contrib/rtmpdump/Pkgfile

43 lines
803 B
Plaintext
Raw Normal View History

2013-10-22 11:18:09 +02:00
# Description: A tool to download rtmp streams.
# URL: http://rtmpdump.mplayerhq.hu/
2023-08-06 21:19:55 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gnutls
2013-10-22 11:18:09 +02:00
name=rtmpdump
2014-03-02 10:53:06 +01:00
version=2.4
2023-05-28 11:07:01 +02:00
_commit=f1b83c10d8beb43fcc70a6e88cf4325499f25857
release=4
2024-03-17 22:57:18 +01:00
source=(https://crux.nu/files/distfiles/rtmpdump-2.4-f1b83c10-4.tar.gz)
2013-10-22 11:18:09 +02:00
build() {
2023-08-06 21:19:55 +02:00
cd $name-*
sed \
-e '/^CRYPTO=/s/OPENSSL/GNUTLS/' \
-i Makefile -i librtmp/Makefile
sed \
-e 's|OPT=|&-fPIC |' \
-e 's|OPT|OPTS|' \
-e 's|CFLAGS=.*|& $(OPT)|' \
-i librtmp/Makefile
install -d $PKG/usr/lib
[ "$CC" ] || CC=gcc
make \
CC="$CC" \
$MAKEFLAGS \
OPT="$CFLAGS" \
XLDFLAGS="$LDFLAGS" \
SYS=posix
make \
prefix=/usr \
sbindir=/usr/bin \
mandir=/usr/share/man \
DESTDIR=$PKG \
install
2013-10-22 11:18:09 +02:00
}