diff options
Diffstat (limited to 'abs')
-rw-r--r-- | abs/extra-testing/rtmpdump/PKGBUILD | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/abs/extra-testing/rtmpdump/PKGBUILD b/abs/extra-testing/rtmpdump/PKGBUILD new file mode 100644 index 0000000..52050b2 --- /dev/null +++ b/abs/extra-testing/rtmpdump/PKGBUILD @@ -0,0 +1,18 @@ +# $Id: PKGBUILD 5936 2008-07-21 20:24:16Z thomas $ +# Maintainer: Cecil Watson<knoppmyth@gmail.com> + +pkgname=rtmpdump +pkgver=1.2a +pkgrel=1 +pkgdesc="A small dumper for media content streamed over the RTMP protocol." +arch=('i686' 'x86_64') +license=('GPL2') +url="http://sourceforge.net/projects/rtmpdump/" +source=('http://garr.dl.sourceforge.net/sourceforge/rtmpdump/rtmpdump-v1.2a.tar.gz') + +build() { + cd $startdir/src/rtmpdump + make + mkdir -p $startdir/pkg/usr/bin + cp -p rtmpdump $startdir/pkg/usr/bin +} |