wok view soundtouch/receipt @ rev 15599

Update some bdeps with pkg-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 13:21:20 2013 +0000 (2013-12-05)
parents 7a54ed6dfb65
children fd22b033a84a
line source
1 # SliTaz package receipt.
3 PACKAGE="soundtouch"
4 VERSION="1.5.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="An audio processing library"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.surina.net/soundtouch/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 DEPENDS="gcc-lib-base"
14 BUILD_DEPENDS="libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 patch -Np1 -i $stuff/$PACKAGE-1.4.0-mmx-sse-compile-fix.patch
21 ./configure --enable-shared $CONFIGURE_ARGS && make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }