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
|
2019-08-13 17:58:28 +00:00
|
|
|
pkgver=23.2.1.r188.gae83c857d
|
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")
|
2019-08-13 17:58:28 +00:00
|
|
|
url="https://github.com/obsproject/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")
|
2018-01-25 19:08:57 +00:00
|
|
|
makedepends=("cmake" "git" "libfdk-aac" "libxcomposite" "x264" "jack"
|
|
|
|
"vlc" "swig" "luajit" "python")
|
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"
|
2018-01-23 19:54:50 +00:00
|
|
|
"vlc: VLC Media Source"
|
2018-01-25 19:08:57 +00:00
|
|
|
"swig: Scripting"
|
2018-01-25 19:13:49 +00:00
|
|
|
"luajit: Lua scripting"
|
2018-01-25 19:08:57 +00:00
|
|
|
"python: Python scripting")
|
2018-01-12 17:48:52 +00:00
|
|
|
provides=("obs-studio=$pkgver")
|
2016-03-07 14:50:41 +00:00
|
|
|
conflicts=("obs-studio")
|
2019-08-13 17:58:28 +00:00
|
|
|
source=("$pkgname::git+https://github.com/obsproject/obs-studio.git#branch=master"
|
2017-08-30 17:49:33 +00:00
|
|
|
"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 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
|
|
|
|
|
2018-01-25 19:08:57 +00:00
|
|
|
cmake \
|
2018-01-25 19:13:49 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2019-08-13 18:06:12 +00:00
|
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
2018-01-25 19:13:49 +00:00
|
|
|
-DOBS_VERSION_OVERRIDE=$pkgver ..
|
2016-03-07 14:50:41 +00:00
|
|
|
|
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
|
|
|
|
2018-01-25 19:13:49 +00:00
|
|
|
# vim: ts=2:sw=2:expandtab
|