obs-studio-browser/PKGBUILD

48 lines
1.3 KiB
Bash
Raw Normal View History

2015-07-09 10:04:10 +00:00
# Maintainer: Benjamin Klettbach <b dot klettbach at gmail dot com >
# 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
pkgver=0.16.1.r0.g6d16c51
pkgrel=1
2015-07-09 10:04:10 +00:00
pkgdesc="Free and open source software for video recording and live streaming."
arch=("i686" "x86_64")
2015-07-09 10:04:10 +00:00
url="https://github.com/jp9000/obs-studio"
license=("GPL2")
depends=("ffmpeg" "jansson" "libxinerama" "libxkbcommon-x11"
"qt5-x11extras" "curl" "gtk-update-icon-cache")
makedepends=("cmake" "git" "libfdk-aac" "libxcomposite" "x264" "jack" "vlc")
optdepends=("libfdk-aac: FDK AAC codec support"
"libxcomposite: XComposite capture support"
"jack: JACK 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")
2015-07-09 10:04:10 +00:00
pkgver() {
cd $pkgname
git describe --long --tags | sed -r "s/([^-]*-g)/r\1/;s/-/./g"
2015-07-09 10:04:10 +00:00
}
build() {
cd $pkgname
mkdir -p build; cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DOBS_VERSION_OVERRIDE=$pkgver ..
make
2015-07-09 10:04:10 +00:00
}
package() {
cd $pkgname/build
make install DESTDIR="$pkgdir"
2015-07-09 10:04:10 +00:00
}
# vim: ts=2:sw=2