wok view spandsp/receipt @ rev 13121

Up: tls to 1.6.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jul 04 21:29:42 2012 +0000 (2012-07-04)
parents 4db1923f131d
children de5c76813d78
line source
1 # SliTaz package receipt.
3 PACKAGE="spandsp"
4 VERSION="0.0.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="library of DSP functions for telephony."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tgz"
9 WEB_SITE="http://www.soft-switch.org/"
10 WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL"
11 DEPENDS="tiff zlib jpeg"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr $CONFIGURE_ARGS &&
18 make -j1 &&
19 make -j1 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 $_pkg/usr/lib/*.so* $fs/usr/lib
27 }