[arch-commits] Commit in obs-studio/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Mon Nov 4 05:00:45 UTC 2019
Date: Monday, November 4, 2019 @ 05:00:44
Author: felixonmars
Revision: 523156
archrelease: copy trunk to community-staging-x86_64
Added:
obs-studio/repos/community-staging-x86_64/
obs-studio/repos/community-staging-x86_64/PKGBUILD
(from rev 523155, obs-studio/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: obs-studio/repos/community-staging-x86_64/PKGBUILD (from rev 523155, obs-studio/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2019-11-04 05:00:44 UTC (rev 523156)
@@ -0,0 +1,39 @@
+# Maintainer: Jonathan Steel <jsteel at archlinux.org>
+# Contributor: Benjamin Klettbach <b.klettbach at gmail.com>
+
+pkgname=obs-studio
+pkgver=24.0.3
+pkgrel=2
+pkgdesc="Free, open source software for live streaming and recording"
+arch=('x86_64')
+url="https://obsproject.com"
+license=('GPL2')
+depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11' 'mbedtls'
+ 'qt5-svg' 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
+makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264' 'vlc' 'swig' 'python' 'luajit')
+optdepends=('libfdk-aac: FDK AAC codec support'
+ 'libxcomposite: XComposite capture support'
+ 'libva-intel-driver: hardware encoding'
+ 'libva-mesa-driver: hardware encoding'
+ 'luajit: scripting support'
+ 'python: scripting support'
+ 'vlc: VLC Media Source support')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
+md5sums=('f61eb487e11d8576a67325424ae69a6d')
+
+build() {
+ cd $pkgname-$pkgver
+
+ mkdir -p build; cd build
+
+ cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+ -DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
+
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver/build
+
+ make install DESTDIR="$pkgdir"
+}
More information about the arch-commits
mailing list