wok view portaudio/receipt @ rev 17699

Up marlin: edit last patch
author Yuri Pourre <yuripourre@gmail.com>
date Thu Feb 26 22:14:27 2015 -0300 (2015-02-26)
parents 51a1ebbda768
children cfdb128f6428
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 LICENSE="CC-SA"
9 SOURCE="pa_stable"
10 TARBALL="${SOURCE}_${VERSION}.tgz"
11 WEB_SITE="http://www.portaudio.com/"
12 WGET_URL="http://www.portaudio.com/archives/$TARBALL"
13 HOST_ARCH="i486 arm"
15 DEPENDS="alsa-lib jack-audio-connection-kit"
16 BUILD_DEPENDS="alsa-lib-dev jack-audio-connection-kit-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }