wok annotate portaudio/receipt @ rev 13694

lxappearance: up 0.5.2
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 14 01:33:12 2012 +0000 (2012-12-14)
parents be13f25e790b
children 51a1ebbda768
rev   line source
erjo@1464 1 # SliTaz package receipt.
erjo@1464 2
erjo@1464 3 PACKAGE="portaudio"
slaxemulator@12338 4 VERSION="v19_20110326"
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"
slaxemulator@12338 11 TARBALL="${SOURCE}_${VERSION}.tgz"
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 cd $src
erjo@1464 19 ./configure --prefix=/usr \
erjo@1464 20 --infodir=/usr/share/info \
erjo@1464 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
erjo@1464 22 make &&
erjo@1464 23 make DESTDIR=$PWD/_pkg install
erjo@1464 24 }
erjo@1464 25
erjo@1464 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1464 27 genpkg_rules()
erjo@1464 28 {
erjo@1464 29 mkdir -p $fs/usr/lib
erjo@1464 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@1464 31 }