wok view rtmpdump/receipt @ rev 17009

Add gnome-hearts
author Yuri Pourre <yuripourre@gmail.com>
date Tue Aug 12 14:41:19 2014 -0300 (2014-08-12)
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 }