obs-studio-browser/PKGBUILD

83 lines
1.6 KiB
Bash
Raw Normal View History

# Maintainer: Knut Ahlers <knut at ahlers dot me>
# Contributor: Alice Gaudon <alice at gaudon dot pro>
# Contributor: 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-browser
2021-10-04 15:20:14 +00:00
pkgver=27.1.2
2021-01-07 00:43:56 +00:00
pkgrel=1
pkgdesc="Free and open source software for video recording and live streaming. Built with the browser plugin."
arch=("i686" "x86_64")
2019-08-13 17:58:28 +00:00
url="https://github.com/obsproject/obs-studio"
license=("GPL2")
depends=(
"curl"
"ffmpeg"
"gtk-update-icon-cache"
"jansson"
"libxinerama"
"libxkbcommon-x11"
"qt5-x11extras"
2021-06-01 22:46:56 +00:00
"pipewire"
)
makedepends=(
"cef-minimal-obs"
"cmake"
"git"
"jack"
"libfdk-aac"
"libxcomposite"
"luajit"
"python"
"swig"
"vlc"
"x264"
)
optdepends=(
"libfdk-aac: FDK AAC codec support"
"libxcomposite: XComposite capture support"
"jack: JACK Support"
"vlc: VLC Media Source"
"swig: Scripting"
"luajit: Lua scripting"
"python: Python scripting"
"v4l2loopback-dkms: Virtual camera output"
)
provides=("obs-studio=$pkgver")
conflicts=("obs-studio")
source=(
"$pkgname::git+https://github.com/obsproject/obs-studio.git#tag=$pkgver"
)
sha256sums=('SKIP')
2015-07-09 10:04:10 +00:00
2017-08-30 17:49:33 +00:00
prepare() {
cd $pkgname
git submodule update --init --recursive
2017-08-30 17:49:33 +00:00
}
2015-07-09 10:04:10 +00:00
build() {
cd $pkgname
mkdir -p build
cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DBUILD_BROWSER=ON \
-DCEF_ROOT_DIR="/opt/cef" \
-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:expandtab