wok view portaudio/receipt @ rev 12498

Add xorg-dmxproto
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 24 17:23:18 2012 +0200 (2012-04-24)
parents be13f25e790b
children 51a1ebbda768
line source
1 # SliTaz package receipt.
3 PACKAGE="portaudio"
4 VERSION="v19_20110326"
5 CATEGORY="system-tools"
6 SHORT_DESC="A portable cross-platform audio API"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="alsa-lib jack-audio-connection-kit"
9 BUILD_DEPENDS="alsa-lib-dev jack-audio-connection-kit-dev"
10 SOURCE="pa_stable"
11 TARBALL="${SOURCE}_${VERSION}.tgz"
12 WEB_SITE="http://www.portaudio.com/"
13 WGET_URL="http://www.portaudio.com/archives/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }