# Maintainer: Benjamin Klettbach # Contributor: Jonathan Steel # Contributor: ArcticVanguard # Contributor: ledti pkgname=obs-studio-git pkgver=26.1.2.r186.g01c00cf27 pkgrel=1 pkgdesc="Free and open source software for video recording and live streaming." arch=("i686" "x86_64") url="https://github.com/obsproject/obs-studio" license=("GPL2") depends=("ffmpeg" "jansson" "libxinerama" "libxkbcommon-x11" "mbedtls" "qt5-svg" "qt5-x11extras" "curl" "jack" "gtk-update-icon-cache") makedepends=("cmake" "git" "libfdk-aac" "libxcomposite" "x264" "vlc" "swig" "luajit" "python" "cef-minimal>=87.0.0" "wayland" "qt5-wayland") optdepends=("libfdk-aac: FDK AAC codec support" "libxcomposite: XComposite capture support" "libva-intel-driver: hardware encoding" "libva-mesa-driver: hardware encoding" "vlc: VLC Media Source" "luajit: Lua scripting" "python: Python scripting" "v4l2loopback-dkms: Virtual webcam") provides=("obs-studio=$pkgver") conflicts=("obs-studio") source=("$pkgname::git+https://github.com/obsproject/obs-studio.git#branch=master" "git+https://github.com/Mixer/ftl-sdk.git" "git+https://github.com/obsproject/obs-browser.git" "fix_python_binary_loading.patch") md5sums=("SKIP" "SKIP" "SKIP" "051b90f05e26bff99236b8fb1ad377d1") prepare() { cd $pkgname patch -Np1 < "$srcdir"/fix_python_binary_loading.patch } pkgver() { cd $pkgname git describe --long --tags | sed -r "s/([^-]*-g)/r\1/;s/-/./g" } prepare() { cd $pkgname git config submodule.plugins/obs-outputs/ftl-sdk.url $srcdir/ftl-sdk git config submodule.plugins/obs-browser.url $srcdir/obs-browser git submodule update } 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 } package() { cd $pkgname/build make install DESTDIR="$pkgdir" } # vim: ts=2:sw=2:expandtab