wok view spandsp/receipt @ rev 9674

Fixed python-pyxml. The sed way had a error unmatch /. So i'm using the real patch from archlinux.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue May 03 04:53:22 2011 +0000 (2011-05-03)
parents 640ddbff13b4
children b7319995b37e
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 &&
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 }