# Description: A tool to download rtmp streams. # URL: http://rtmpdump.mplayerhq.hu/ # Maintainer: Danny Rawlins, crux at romster dot me # Depends on: zlib openssl name=rtmpdump version=2.4 release=2 source=(http://crux.ster.zone/downloads/$name/$name-$version-c5f04a58.tar.xz) build() { cd $name sed -i \ -e 's|OPT=|&-fPIC |' \ -e 's|OPT|OPTS|' \ -e 's|CFLAGS=.*|& $(OPT)|' \ librtmp/Makefile install -d $PKG/usr/lib [ "$CC" ] || CC=gcc make \ CC="$CC" \ $MAKEFLAGS \ OPT="$CFLAGS" \ XLDFLAGS="$LDFLAGS" \ CRYPTO=OPENSSL \ SYS=posix make \ CRYPTO=OPENSSL \ prefix=/usr \ sbindir=/usr/bin \ mandir=/usr/share/man \ DESTDIR=$PKG \ install }