wok view ortp/receipt @ rev 13982

Add tcpreplay
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 07 17:41:21 2013 +0100 (2013-02-07)
parents
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="ortp"
4 VERSION="0.20.0"
5 CATEGORY="network"
6 SHORT_DESC="Library implementing the Real-time Transport Protocol (RFC3550)."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://freecode.com/projects/ortp"
10 WGET_URL="http://download-mirror.savannah.gnu.org/releases/linphone/$PACKAGE/sources/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr \
17 $CONFIGURE_ARGS &&
18 make &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }