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
|
2016-08-30 19:29:09 +00:00
|
|
|
pkgver=0.15.4.r33.g07539da
|
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-08-30 19:29:09 +00:00
|
|
|
"qt5-x11extras" "curl" "hicolor-icon-theme")
|
|
|
|
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")
|
|
|
|
install=$pkgname.install
|
|
|
|
source=("$pkgname::git+https://github.com/jp9000/obs-studio.git#branch=master")
|
|
|
|
md5sums=("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
|
|
|
}
|
|
|
|
|
|
|
|
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
|