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