2015-07-09 10:04:10 +00:00
|
|
|
# Maintainer: Benjamin Klettbach <b dot klettbach at gmail dot com >
|
2016-03-07 14:50:41 +00:00
|
|
|
# Contributor: Jonathan Steel <jsteel at archlinux.org>
|
2015-07-09 10:04:10 +00:00
|
|
|
# Contributor: ArcticVanguard <LideEmily at gmail dot com>
|
|
|
|
# Contributor: ledti <antergist at gmail dot com>
|
|
|
|
|
|
|
|
pkgname=obs-studio-git
|
2017-08-30 17:49:33 +00:00
|
|
|
pkgver=20.0.1.r11.g41a1b099
|
2015-12-22 08:16:32 +00:00
|
|
|
pkgrel=1
|
2015-07-09 10:04:10 +00:00
|
|
|
pkgdesc="Free and open source software for video recording and live streaming."
|
2016-03-07 14:50:41 +00:00
|
|
|
arch=("i686" "x86_64")
|
2015-07-09 10:04:10 +00:00
|
|
|
url="https://github.com/jp9000/obs-studio"
|
2016-03-07 14:50:41 +00:00
|
|
|
license=("GPL2")
|
|
|
|
depends=("ffmpeg" "jansson" "libxinerama" "libxkbcommon-x11"
|
2016-09-28 13:49:09 +00:00
|
|
|
"qt5-x11extras" "curl" "gtk-update-icon-cache")
|
2016-08-30 19:29:09 +00:00
|
|
|
makedepends=("cmake" "git" "libfdk-aac" "libxcomposite" "x264" "jack" "vlc")
|
2016-03-07 14:50:41 +00:00
|
|
|
optdepends=("libfdk-aac: FDK AAC codec support"
|
2016-08-30 19:29:09 +00:00
|
|
|
"libxcomposite: XComposite capture support"
|
|
|
|
"jack: JACK Support"
|
|
|
|
"vlc: VLC Media Source")
|
2016-03-07 14:50:41 +00:00
|
|
|
provides=("obs-studio")
|
|
|
|
conflicts=("obs-studio")
|
2017-08-30 17:49:33 +00:00
|
|
|
source=("$pkgname::git+https://github.com/jp9000/obs-studio.git#branch=master"
|
|
|
|
"git+https://github.com/Mixer/ftl-sdk.git")
|
|
|
|
md5sums=("SKIP" "SKIP")
|
2015-07-09 10:04:10 +00:00
|
|
|
|
|
|
|
pkgver() {
|
2016-03-07 14:50:41 +00:00
|
|
|
cd $pkgname
|
|
|
|
git describe --long --tags | sed -r "s/([^-]*-g)/r\1/;s/-/./g"
|
2015-07-09 10:04:10 +00:00
|
|
|
}
|
|
|
|
|
2017-08-30 17:49:33 +00:00
|
|
|
prepare() {
|
|
|
|
cd $pkgname
|
|
|
|
git submodule init
|
|
|
|
git config submodule.plugins/obs-outputs/ftl-sdk.url $srcdir/ftl-sdk
|
|
|
|
git submodule update
|
|
|
|
}
|
|
|
|
|
2015-07-09 10:04:10 +00:00
|
|
|
build() {
|
2016-03-07 14:50:41 +00:00
|
|
|
cd $pkgname
|
|
|
|
|
|
|
|
mkdir -p build; cd build
|
|
|
|
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DOBS_VERSION_OVERRIDE=$pkgver ..
|
|
|
|
|
2015-12-22 08:16:32 +00:00
|
|
|
make
|
2015-07-09 10:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2016-03-07 14:50:41 +00:00
|
|
|
cd $pkgname/build
|
|
|
|
|
|
|
|
make install DESTDIR="$pkgdir"
|
2015-07-09 10:04:10 +00:00
|
|
|
}
|
2016-08-30 19:29:09 +00:00
|
|
|
|
|
|
|
# vim: ts=2:sw=2
|