wok view spandsp/receipt @ rev 15096

spandsp: add build_depends !
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 14 09:29:57 2013 +0000 (2013-08-14)
parents b7319995b37e
children 7a2212bc32cd
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 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://www.soft-switch.org/"
11 WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL"
13 DEPENDS="tiff zlib jpeg"
14 BUILD_DEPENDS="tiff-dev zlib-dev jpeg-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make -j1 &&
22 make -j1 install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }