wok view rtmpdump/receipt @ rev 16404

Up: slitaz-tools, slitaz-tools-boxes (5.7.2) bugfix
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Apr 16 15:34:54 2014 +0300 (2014-04-16)
parents
children a12d1999be3d
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 }