wok-next annotate spandsp/receipt @ rev 11539
cinepaint: fix compile_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Dec 25 11:44:22 2011 +0100 (2011-12-25) |
parents | 640ddbff13b4 |
children | b7319995b37e |
rev | line source |
---|---|
pascal@1178 | 1 # SliTaz package receipt. |
pascal@1178 | 2 |
pascal@9043 | 3 PACKAGE="spandsp" |
pascal@9043 | 4 VERSION="0.0.5" |
pascal@9043 | 5 CATEGORY="system-tools" |
pascal@9043 | 6 SHORT_DESC="library of DSP functions for telephony." |
pascal@1178 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@9043 | 8 TARBALL="$PACKAGE-$VERSION.tgz" |
pascal@9043 | 9 WEB_SITE="http://www.soft-switch.org/" |
pascal@9043 | 10 WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL" |
pascal@9043 | 11 DEPENDS="tiff zlib jpeg" |
pascal@1178 | 12 |
pascal@1178 | 13 # Rules to configure and make the package. |
pascal@1178 | 14 compile_rules() |
pascal@1178 | 15 { |
pascal@1178 | 16 cd $src |
pascal@9043 | 17 ./configure --prefix=/usr && |
pascal@9048 | 18 make -j1 && |
pascal@9048 | 19 make -j1 install |
pascal@1178 | 20 } |
pascal@1178 | 21 |
pascal@1178 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1178 | 23 genpkg_rules() |
pascal@1178 | 24 { |
pascal@9043 | 25 mkdir -p $fs/usr/lib |
pascal@9043 | 26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pascal@1178 | 27 } |