# Maintainer: Knut Ahlers # Contributor: Alice Gaudon # Contributor: Benjamin Klettbach # Contributor: Jonathan Steel # Contributor: ArcticVanguard # Contributor: ledti pkgname=obs-studio-browser pkgver=27.1.3 pkgrel=1 pkgdesc="Free and open source software for video recording and live streaming. Built with the browser plugin." arch=("i686" "x86_64") url="https://github.com/obsproject/obs-studio" license=("GPL2") depends=( "curl" "ffmpeg" "gtk-update-icon-cache" "jansson" "libxinerama" "libxkbcommon-x11" "qt5-x11extras" "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') prepare() { cd $pkgname git submodule update --init --recursive } 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