wok-stable annotate portaudio/receipt @ rev 6573
lighttpd: fix 36897b07aa3c commit
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Oct 08 21:28:00 2010 +0200 (2010-10-08) |
parents | affc97110d37 |
children | c07816c99ed2 |
rev | line source |
---|---|
erjo@1464 | 1 # SliTaz package receipt. |
erjo@1464 | 2 |
erjo@1464 | 3 PACKAGE="portaudio" |
pankso@3609 | 4 VERSION="v19_20071207" |
erjo@1464 | 5 CATEGORY="system-tools" |
erjo@1464 | 6 SHORT_DESC="A portable cross-platform audio API" |
erjo@1464 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@2105 | 8 DEPENDS="alsa-lib" |
pascal@1511 | 9 BUILD_DEPENDS="alsa-lib-dev" |
erjo@1464 | 10 SOURCE="pa_stable" |
pankso@3609 | 11 TARBALL="${SOURCE}_${VERSION}.tar.gz" |
erjo@1464 | 12 WEB_SITE="http://www.portaudio.com/" |
erjo@1464 | 13 WGET_URL="http://www.portaudio.com/archives/$TARBALL" |
erjo@1464 | 14 |
erjo@1464 | 15 # Rules to configure and make the package. |
erjo@1464 | 16 compile_rules() |
erjo@1464 | 17 { |
erjo@1464 | 18 src=$PACKAGE |
erjo@1464 | 19 cd $src |
erjo@1464 | 20 ./configure --prefix=/usr \ |
erjo@1464 | 21 --infodir=/usr/share/info \ |
erjo@1464 | 22 --mandir=/usr/share/man $CONFIGURE_ARGS && |
erjo@1464 | 23 make && |
erjo@1464 | 24 make DESTDIR=$PWD/_pkg install |
erjo@1464 | 25 } |
erjo@1464 | 26 |
erjo@1464 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@1464 | 28 genpkg_rules() |
erjo@1464 | 29 { |
erjo@1464 | 30 _pkg=$WOK/$PACKAGE/$PACKAGE/_pkg |
pankso@3609 | 31 |
erjo@1464 | 32 mkdir -p $fs/usr/lib |
erjo@1464 | 33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@3609 | 34 |
erjo@1464 | 35 # Package all pkgs |
erjo@1464 | 36 for i in $(cd $WOK; ls -d $PACKAGE-*) |
erjo@1464 | 37 do |
erjo@1464 | 38 tazwok genpkg $i |
erjo@1464 | 39 done |
erjo@1464 | 40 } |
erjo@1464 | 41 |
erjo@1464 | 42 clean_wok() |
erjo@1464 | 43 { |
root@1856 | 44 rm -rf $WOK/$PACKAGE/$PACKAGE |
erjo@1464 | 45 } |
erjo@1464 | 46 |