wok view spandsp/receipt @ rev 12052

jssame: remvoed extension in desktop file, added icon
author Samuel Trassare <samuel_trassare@yahoo.com>
date Wed Mar 07 17:42:29 2012 -0800 (2012-03-07)
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 }