wok-next view rtmpdump/receipt @ rev 18719

new aescrypt v3.10 + receipt changes
author Erkan Yilmaz <erkan@slitaz.org>
date Thu Dec 17 20:30:31 2015 +0000 (2015-12-17)
parents
children 914266a96a3c
line source
1 # SliTaz package receipt.
3 PACKAGE="rtmpdump"
4 VERSION="2.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="rtmpdump is a toolkit for RTMP streams"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://rtmpdump.mplayerhq.hu/"
11 WGET_URL="http://rtmpdump.mplayerhq.hu/download/$TARBALL"
13 DEPENDS="libssl"
14 BUILD_DEPENDS="openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir -p $DESTDIR/usr/lib
20 make && make \
21 prefix="/usr" \
22 sbindir="/usr/bin" \
23 mandir="/usr/share/man" \
24 DESTDIR="$DESTDIR" install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 }