wok annotate ortp/receipt @ rev 19941
memtest: remove help command line, useless
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 04 12:47:15 2017 +0200 (2017-05-04) |
parents | c43e651f7b1d |
children | 17091bc7c301 |
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@14996 | 8 LICENSE="LGPL2.1" |
pascal@13743 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@13743 | 10 WEB_SITE="http://freecode.com/projects/ortp" |
pascal@13743 | 11 WGET_URL="http://download-mirror.savannah.gnu.org/releases/linphone/$PACKAGE/sources/$TARBALL" |
pascal@13743 | 12 |
pascal@13743 | 13 # Rules to configure and make the package. |
pascal@13743 | 14 compile_rules() |
pascal@13743 | 15 { |
pascal@13743 | 16 cd $src |
pascal@13743 | 17 ./configure --prefix=/usr \ |
pascal@13743 | 18 $CONFIGURE_ARGS && |
pascal@13743 | 19 make && |
pascal@13743 | 20 make DESTDIR=$DESTDIR install |
pascal@13743 | 21 } |
pascal@13743 | 22 |
pascal@13743 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13743 | 24 genpkg_rules() |
pascal@13743 | 25 { |
pascal@13743 | 26 mkdir -p $fs/usr/lib |
pascal@13743 | 27 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@13743 | 28 } |