# Maintainer: Knut Ahlers # Contributor: Alice Gaudon # Contributor: Benjamin Klettbach # Contributor: Jonathan Steel # Contributor: ArcticVanguard # Contributor: ledti pkgname=obs-studio-browser pkgver=29.0.2 pkgrel=2 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" "libajantv2" "libxinerama" "libxkbcommon-x11" "mbedtls" "qt5-x11extras" "pciutils" "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" "https://github.com/obsproject/obs-studio/commit/2e79d4c9.patch" ) sha256sums=('SKIP' '96ea913149377b324d132aa56964a72e5263e06a8b8d2103c1708b04752f3b9d') prepare() { cd $pkgname git submodule update --init --recursive patch -Np1 <"$srcdir"/2e79d4c9.patch # Fix build with FFmpeg 6 } 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 \ -DENABLE_NEW_MPEGTS_OUTPUT=OFF \ .. make } package() { cd $pkgname/build make install DESTDIR="$pkgdir" } # vim: ts=2:sw=2:expandtab