diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2013-10-22 20:18:09 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2013-10-22 21:57:43 +1100 |
commit | 47391a55faf244569cc84f44af451eca1226d893 (patch) | |
tree | fe703b1a5e9ea56926e020a8836ef3ce879e5460 /rtmpdump | |
parent | caaa21a1fb3326ee9aaf1802e567a09a3a262fd6 (diff) | |
download | contrib-47391a55faf244569cc84f44af451eca1226d893.tar.gz contrib-47391a55faf244569cc84f44af451eca1226d893.tar.xz |
rtmpdump: initial import
Diffstat (limited to 'rtmpdump')
-rw-r--r-- | rtmpdump/.footprint | 25 | ||||
-rw-r--r-- | rtmpdump/.md5sum | 1 | ||||
-rw-r--r-- | rtmpdump/Pkgfile | 21 |
3 files changed, 47 insertions, 0 deletions
diff --git a/rtmpdump/.footprint b/rtmpdump/.footprint new file mode 100644 index 000000000..3a41b8355 --- /dev/null +++ b/rtmpdump/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/rtmpdump +-rwxr-xr-x root/root usr/bin/rtmpgw +-rwxr-xr-x root/root usr/bin/rtmpsrv +-rwxr-xr-x root/root usr/bin/rtmpsuck +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/librtmp/ +-rw-r--r-- root/root usr/include/librtmp/amf.h +-rw-r--r-- root/root usr/include/librtmp/http.h +-rw-r--r-- root/root usr/include/librtmp/log.h +-rw-r--r-- root/root usr/include/librtmp/rtmp.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/librtmp.a +lrwxrwxrwx root/root usr/lib/librtmp.so -> librtmp.so.0 +-rwxr-xr-x root/root usr/lib/librtmp.so.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/librtmp.pc +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/rtmpdump.1.gz +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/librtmp.3.gz +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/rtmpgw.8.gz diff --git a/rtmpdump/.md5sum b/rtmpdump/.md5sum new file mode 100644 index 000000000..472d0a707 --- /dev/null +++ b/rtmpdump/.md5sum @@ -0,0 +1 @@ +d5aee7a6cf4f7be15571136a1447901c rtmpdump-git-20121230.tar.xz diff --git a/rtmpdump/Pkgfile b/rtmpdump/Pkgfile new file mode 100644 index 000000000..02a071bd8 --- /dev/null +++ b/rtmpdump/Pkgfile @@ -0,0 +1,21 @@ +# Description: A tool to download rtmp streams. +# URL: http://rtmpdump.mplayerhq.hu/ +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com +# Packager: Danny Rawlins, monster dot romster at gmail dot com +# Depends on: zlib openssl + +name=rtmpdump +version=20121230 +release=1 +source=(http://crux.ster.so/distfiles/$name/$name-git-$version.tar.xz) + +build() { + cd $name-$version + + install -d $PKG/usr/lib + + [ "$CC" ] || CC=gcc + make CC="$CC" $MAKEFLAGS + make prefix=/usr sbindir=/usr/bin mandir=/usr/man \ + DESTDIR=$PKG install +} |