diff options
Diffstat (limited to 'extra/rtmpdump/PKGBUILD')
-rw-r--r-- | extra/rtmpdump/PKGBUILD | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/extra/rtmpdump/PKGBUILD b/extra/rtmpdump/PKGBUILD index 087b35c41..d6cc9a070 100644 --- a/extra/rtmpdump/PKGBUILD +++ b/extra/rtmpdump/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 187070 2013-06-03 11:16:53Z allan $ +# $Id: PKGBUILD 189979 2013-07-12 06:44:58Z eric $ # Maintainer: # Contributor: xduugu # Contributor: Elis Hughes <elishughes@googlemail.com> pkgname=rtmpdump -pkgver=20121203 -pkgrel=2 +pkgver=20121230 +pkgrel=1 pkgdesc="A tool to download rtmp streams" arch=('i686' 'x86_64') url="http://rtmpdump.mplayerhq.hu/" @@ -14,16 +14,14 @@ depends=('openssl') options=(!makeflags) #git://git.ffmpeg.org/rtmpdump source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('e5d9f7411bddd5a12be677f2a285c38100313db2b3b1f8d2a709d46e03741409') +sha256sums=('89faf9df54204dbab211621809aa961ea6405e192cc0ce6633307e87aed400b7') build() { - make -C "$pkgname-$pkgver" + cd $pkgname-$pkgver + make } package() { - make -C "$pkgname-$pkgver" prefix=/usr mandir=/usr/share/man DESTDIR="$pkgdir" install - # usrmove - cd "$pkgdir" - mv usr/sbin/* usr/bin - rmdir usr/sbin + cd $pkgname-$pkgver + make prefix=/usr sbindir=/usr/bin mandir=/usr/share/man DESTDIR="$pkgdir" install } |