From 4b2900b9259bc8352045a499a45efe691daca5ff Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 10 Sep 2022 15:31:17 +0200 Subject: [PATCH] Disable ENABLE_NEW_MPEGTS_OUTPUT for v28.x as it requires librist Signed-off-by: Knut Ahlers --- PKGBUILD | 88 +++++++++++++++++++++++++++++--------------------------- 1 file changed, 45 insertions(+), 43 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 6abd2a7..1e021bb 100644 --- a/PKGBUILD +++ b/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