2020-11-05 09:29:04 +00:00
|
|
|
# Maintainer: Alice Gaudon <alice at gaudon dot pro>
|
|
|
|
# Contributor: 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>
|
2020-11-05 09:29:04 +00:00
|
|
|
pkgname=obs-studio-browser
|
2020-12-15 13:18:33 +00:00
|
|
|
pkgver=26.1.0
|
2020-03-02 20:15:01 +00:00
|
|
|
pkgrel=1
|
2020-11-05 09:29:04 +00:00
|
|
|
pkgdesc="Free and open source software for video recording and live streaming. Built with the browser plugin."
|
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"
|
2020-07-06 21:06:45 +00:00
|
|
|
"vlc" "swig" "luajit" "python" "cef-minimal-3770")
|
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"
|
2020-03-03 14:53:50 +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")
|
2020-11-05 09:29:04 +00:00
|
|
|
source=("$pkgname::git+https://github.com/obsproject/obs-studio.git#tag=$pkgver"
|
2020-03-02 20:15:01 +00:00
|
|
|
"git+https://github.com/Mixer/ftl-sdk.git"
|
|
|
|
"git+https://github.com/obsproject/obs-browser.git")
|
|
|
|
md5sums=("SKIP" "SKIP" "SKIP")
|
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
|
2020-03-03 14:47:17 +00:00
|
|
|
git config submodule.plugins/obs-browser.url $srcdir/obs-browser
|
2017-08-30 17:49:33 +00:00
|
|
|
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 \
|
2020-03-02 20:15:01 +00:00
|
|
|
-DBUILD_BROWSER=ON \
|
|
|
|
-DCEF_ROOT_DIR="/opt/cef" \
|
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
|