wok view rtmpdump/receipt @ rev 22147

updated xalan-c and xalan-c-dev (1.10.0 -> 1.11)
author Hans-G?nter Theisgen
date Wed Nov 06 16:26:14 2019 +0100 (2019-11-06)
parents b86ccefd8c45
children 2f230197370e
line source
1 # SliTaz package receipt.
3 PACKAGE="rtmpdump"
4 VERSION="2.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="A toolkit for RTMP streams."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://rtmpdump.mplayerhq.hu/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://rtmpdump.mplayerhq.hu/download/$TARBALL"
14 DEPENDS="libssl"
15 BUILD_DEPENDS="openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir -p $DESTDIR/usr/lib
21 make &&
22 make install \
23 prefix="/usr" \
24 sbindir="/usr/bin" \
25 mandir="/usr/share/man" \
26 DESTDIR="$DESTDIR"
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 }