mirror of
https://github.com/luzifer-aur/obs-studio-browser.git
synced 2024-12-20 16:21:17 +00:00
Add ftl-sdk submodule for FTL support
This commit is contained in:
parent
12350c0125
commit
be06772575
2 changed files with 12 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
|||
*.tar
|
||||
obs-studio-git/
|
||||
ftl-sdk
|
||||
pkg/
|
||||
src/
|
||||
|
||||
|
|
14
PKGBUILD
14
PKGBUILD
|
@ -4,7 +4,7 @@
|
|||
# Contributor: ledti <antergist at gmail dot com>
|
||||
|
||||
pkgname=obs-studio-git
|
||||
pkgver=0.16.1.r0.g6d16c51
|
||||
pkgver=20.0.1.r11.g41a1b099
|
||||
pkgrel=1
|
||||
pkgdesc="Free and open source software for video recording and live streaming."
|
||||
arch=("i686" "x86_64")
|
||||
|
@ -19,14 +19,22 @@ optdepends=("libfdk-aac: FDK AAC codec support"
|
|||
"vlc: VLC Media Source")
|
||||
provides=("obs-studio")
|
||||
conflicts=("obs-studio")
|
||||
source=("$pkgname::git+https://github.com/jp9000/obs-studio.git#branch=master")
|
||||
md5sums=("SKIP")
|
||||
source=("$pkgname::git+https://github.com/jp9000/obs-studio.git#branch=master"
|
||||
"git+https://github.com/Mixer/ftl-sdk.git")
|
||||
md5sums=("SKIP" "SKIP")
|
||||
|
||||
pkgver() {
|
||||
cd $pkgname
|
||||
git describe --long --tags | sed -r "s/([^-]*-g)/r\1/;s/-/./g"
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd $pkgname
|
||||
git submodule init
|
||||
git config submodule.plugins/obs-outputs/ftl-sdk.url $srcdir/ftl-sdk
|
||||
git submodule update
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname
|
||||
|
||||
|
|
Loading…
Reference in a new issue