mirror of
https://github.com/luzifer-aur/obs-studio-browser.git
synced 2024-12-20 16:21:17 +00:00
Disable ENABLE_NEW_MPEGTS_OUTPUT for v28.x
as it requires librist Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
2e6a9abc71
commit
4b2900b925
1 changed files with 45 additions and 43 deletions
88
PKGBUILD
88
PKGBUILD
|
@ -13,71 +13,73 @@ 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"
|
||||
"pciutils"
|
||||
"pipewire"
|
||||
"curl"
|
||||
"ffmpeg"
|
||||
"gtk-update-icon-cache"
|
||||
"jansson"
|
||||
"libxinerama"
|
||||
"libxkbcommon-x11"
|
||||
"qt5-x11extras"
|
||||
"pciutils"
|
||||
"pipewire"
|
||||
)
|
||||
makedepends=(
|
||||
"cef-minimal-obs"
|
||||
"cmake"
|
||||
"git"
|
||||
"jack"
|
||||
"libfdk-aac"
|
||||
"libxcomposite"
|
||||
"luajit"
|
||||
"python"
|
||||
"swig"
|
||||
"vlc"
|
||||
"x264"
|
||||
"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"
|
||||
"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"
|
||||
"$pkgname::git+https://github.com/obsproject/obs-studio.git#tag=$pkgver"
|
||||
)
|
||||
sha256sums=('SKIP')
|
||||
|
||||
prepare() {
|
||||
cd $pkgname
|
||||
git submodule update --init --recursive
|
||||
cd $pkgname
|
||||
git submodule update --init --recursive
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname
|
||||
cd $pkgname
|
||||
|
||||
mkdir -p build
|
||||
cd build
|
||||
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 ..
|
||||
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
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname/build
|
||||
cd $pkgname/build
|
||||
|
||||
make install DESTDIR="$pkgdir"
|
||||
make install DESTDIR="$pkgdir"
|
||||
}
|
||||
|
||||
# vim: ts=2:sw=2:expandtab
|
||||
|
|
Loading…
Reference in a new issue