wok view ortp/receipt @ rev 15135

python-werkzeug: typos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 10:36:33 2013 +0000 (2013-08-15)
parents c43e651f7b1d
children 17091bc7c301
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 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://freecode.com/projects/ortp"
11 WGET_URL="http://download-mirror.savannah.gnu.org/releases/linphone/$PACKAGE/sources/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr \
18 $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }