wok view rtmpdump/receipt @ rev 16173

Add: ympd (web frontend for mpd - perfect for RPi audio center remote control from desktop or mobile
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 30 16:39:01 2014 +0200 (2014-03-30)
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 }