diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-03-05 11:15:28 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-03-05 11:15:28 -0500 |
commit | bd53fb882bcfafc49ffeb6f83ea1df6df97c2a61 (patch) | |
tree | ee4a3b8a828f176c01213acef6ab2251b42121df /pcr/obs-studio | |
parent | 08583851df92adc4e4b0cd3be7c55d4078c9d503 (diff) |
Removing obs-studio: This package is in [community] repo
Diffstat (limited to 'pcr/obs-studio')
-rw-r--r-- | pcr/obs-studio/PKGBUILD | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pcr/obs-studio/PKGBUILD b/pcr/obs-studio/PKGBUILD deleted file mode 100644 index bb4f1bae2..000000000 --- a/pcr/obs-studio/PKGBUILD +++ /dev/null @@ -1,31 +0,0 @@ -# Maintainer (Arch): Benjamin Klettbach <b.klettbach@gmail.com> - -pkgname=obs-studio -pkgver=0.11.1 -pkgrel=2 -pkgdesc="Free and open source software for video recording and live streaming." -arch=('i686' 'x86_64') -url="https://github.com/jp9000/obs-studio" -license=('GPL2') -depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11' 'qt5-x11extras' 'curl') -makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264') -optdepends=('libfdk-aac: FDK AAC codec support' - 'libxcomposite: XComposite capture support') -provides=('obs-studio') -conflicts=('obs-studio-git') -source=("https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz") -sha256sums=('a8ba62302a8c720dd5342e0e0e1a9ca51920017ef8f47226df6ff788bcf1e189') - -build() { - cd "$srcdir/$pkgname-$pkgver" - mkdir -p "build" - cd "build" - cmake -DCMAKE_INSTALL_PREFIX="/usr" -DOBS_VERSION_OVERRIDE=$pkgver .. - make -j`nproc` -} - -package() { - cd "$srcdir/$pkgname-$pkgver/build" - make install DESTDIR="$pkgdir" -} - |