wok annotate portaudio/receipt @ rev 8399

linux,syslinux: no more awk in shell tools
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 05 16:34:18 2011 +0100 (2011-02-05)
parents c07816c99ed2
children be13f25e790b
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"
slaxemulator@6913 8 DEPENDS="alsa-lib jack-audio-connection-kit"
slaxemulator@6913 9 BUILD_DEPENDS="alsa-lib-dev jack-audio-connection-kit-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
erjo@1464 34 }