wok annotate portaudio/receipt @ rev 23079

updated liblinebreak and liblinebreak-dev (2.0 -> 2.1)
author Hans-G?nter Theisgen
date Tue Mar 10 16:26:23 2020 +0100 (2020-03-10)
parents d6bd3fc6e0bd
children 241fb98cab1c
rev   line source
erjo@1464 1 # SliTaz package receipt.
erjo@1464 2
erjo@1464 3 PACKAGE="portaudio"
Hans-G?nter@21694 4 VERSION="190600_20161030"
erjo@1464 5 CATEGORY="system-tools"
Hans-G?nter@21694 6 SHORT_DESC="A portable cross-platform audio API."
erjo@1464 7 MAINTAINER="erjo@slitaz.org"
Hans-G?nter@21694 8 LICENSE="MIT"
erjo@1464 9 WEB_SITE="http://www.portaudio.com/"
Hans-G?nter@21694 10
Hans-G?nter@21694 11 TARBALL="pa_stable_v${VERSION}.tgz"
erjo@1464 12 WGET_URL="http://www.portaudio.com/archives/$TARBALL"
erjo@1464 13
pascal@15375 14 DEPENDS="alsa-lib jack-audio-connection-kit"
pascal@15375 15 BUILD_DEPENDS="alsa-lib-dev jack-audio-connection-kit-dev"
pascal@15375 16
Hans-G?nter@21694 17 HOST_ARCH="i486 arm"
Hans-G?nter@21694 18
erjo@1464 19 # Rules to configure and make the package.
erjo@1464 20 compile_rules()
erjo@1464 21 {
Hans-G?nter@21694 22 ./configure \
Hans-G?nter@21694 23 --prefix=/usr \
Hans-G?nter@21694 24 --infodir=/usr/share/info \
Hans-G?nter@21694 25 --mandir=/usr/share/man \
Hans-G?nter@21694 26 $CONFIGURE_ARGS &&
erjo@1464 27 make &&
pascal@15375 28 make DESTDIR=$DESTDIR install
erjo@1464 29 }
erjo@1464 30
erjo@1464 31 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1464 32 genpkg_rules()
erjo@1464 33 {
erjo@1464 34 mkdir -p $fs/usr/lib
pascal@15375 35 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@1464 36 }