mirror of
https://github.com/luzifer-aur/obs-studio-browser.git
synced 2024-11-12 15:12:43 +00:00
97 lines
2.4 KiB
Bash
97 lines
2.4 KiB
Bash
# 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>
|
|
# Contributor: ArcticVanguard <LideEmily at gmail dot com>
|
|
# Contributor: ledti <antergist at gmail dot com>
|
|
|
|
pkgname=obs-studio-browser
|
|
pkgver=30.1.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"
|
|
"jack"
|
|
"jansson"
|
|
"libdatachannel"
|
|
"libxcomposite"
|
|
"libxdamage"
|
|
"libxinerama"
|
|
"libxkbcommon-x11"
|
|
"mbedtls"
|
|
"pciutils"
|
|
"pipewire"
|
|
"qrcodegencpp-cmake"
|
|
"qt5-x11extras"
|
|
"qt6-svg"
|
|
"rnnoise"
|
|
"uthash"
|
|
"x264"
|
|
)
|
|
makedepends=(
|
|
"asio"
|
|
"cef-minimal-obs"
|
|
"cmake"
|
|
"git"
|
|
"libfdk-aac"
|
|
"libxcomposite"
|
|
"luajit"
|
|
"nlohmann-json"
|
|
"python"
|
|
"sndio"
|
|
"swig"
|
|
"vlc"
|
|
"websocketpp"
|
|
)
|
|
optdepends=(
|
|
"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"
|
|
"nv-codec-headers.tar.gz::https://github.com/FFmpeg/nv-codec-headers/releases/download/n12.1.14.0/nv-codec-headers-12.1.14.0.tar.gz"
|
|
)
|
|
# XXX nv-codec-headers are kept back at version n12.1.14.0 due to OBS not supporting any newer version
|
|
sha256sums=('0390743a85c3294abdb73ddf7d5d60354b5283f77cc9680026b2641600ae5384'
|
|
'62b30ab37e4e9be0d0c5b37b8fee4b094e38e570984d56e1135a6b6c2c164c9f')
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
git submodule update --init --recursive
|
|
}
|
|
|
|
build() {
|
|
cmake -B build -S $pkgname \
|
|
-DFFnvcodec_INCLUDE_DIR="nv-codec-headers-12.1.14.0/include/" \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DBUILD_BROWSER=ON \
|
|
-DENABLE_VST=ON \
|
|
-DENABLE_VLC=OFF \
|
|
-DENABLE_NEW_MPEGTS_OUTPUT=OFF \
|
|
-DENABLE_AJA=OFF \
|
|
-DENABLE_JACK=ON \
|
|
-DENABLE_LIBFDK=ON \
|
|
-DENABLE_WEBRTC=ON \
|
|
-DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" \
|
|
-DCALM_DEPRECATION=ON \
|
|
-DCEF_ROOT_DIR="/opt/cef" \
|
|
-Wno-dev
|
|
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
# vim: ts=2:sw=2:expandtab
|