wok rev 21694

updated portaudio and portaudio-dev (v19_20110326 -> 190600_20161030)
author Hans-G?nter Theisgen
date Wed Jun 05 16:15:15 2019 +0100 (2019-06-05)
parents ea8ff14ee1ec
children b35f2c510937
files portaudio-dev/receipt portaudio/receipt
line diff
     1.1 --- a/portaudio-dev/receipt	Wed Jun 05 15:25:15 2019 +0100
     1.2 +++ b/portaudio-dev/receipt	Wed Jun 05 16:15:15 2019 +0100
     1.3 @@ -1,23 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="portaudio-dev"
     1.7 -VERSION="v19_20110326"
     1.8 +VERSION="190600_20161030"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Portaudio dev files."
    1.11 +SHORT_DESC="Portaudio - development files."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13 -LICENSE="CC-SA"
    1.14 -SOURCE="pa_stable"
    1.15 +LICENSE="MIT"
    1.16  WEB_SITE="http://www.portaudio.com/"
    1.17 +
    1.18 +DEPENDS="portaudio pkg-config"
    1.19 +WANTED="portaudio"
    1.20 +
    1.21  HOST_ARCH="i486 arm"
    1.22  
    1.23 -WANTED="portaudio"
    1.24 -DEPENDS="portaudio pkg-config"
    1.25 -
    1.26  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.27  genpkg_rules()
    1.28  {
    1.29  	mkdir -p $fs/usr/lib
    1.30 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.31 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.32 -	cp -a $install/usr/include $fs/usr
    1.33 +
    1.34 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.35 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.36 +	cp -a $install/usr/include		$fs/usr
    1.37  }
     2.1 --- a/portaudio/receipt	Wed Jun 05 15:25:15 2019 +0100
     2.2 +++ b/portaudio/receipt	Wed Jun 05 16:15:15 2019 +0100
     2.3 @@ -1,27 +1,29 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="portaudio"
     2.7 -VERSION="v19_20110326"
     2.8 +VERSION="190600_20161030"
     2.9  CATEGORY="system-tools"
    2.10 -SHORT_DESC="A portable cross-platform audio API"
    2.11 +SHORT_DESC="A portable cross-platform audio API."
    2.12  MAINTAINER="erjo@slitaz.org"
    2.13 -LICENSE="CC-SA"
    2.14 -SOURCE="pa_stable"
    2.15 -TARBALL="${SOURCE}_${VERSION}.tgz"
    2.16 +LICENSE="MIT"
    2.17  WEB_SITE="http://www.portaudio.com/"
    2.18 +
    2.19 +TARBALL="pa_stable_v${VERSION}.tgz"
    2.20  WGET_URL="http://www.portaudio.com/archives/$TARBALL"
    2.21 -HOST_ARCH="i486 arm"
    2.22  
    2.23  DEPENDS="alsa-lib jack-audio-connection-kit"
    2.24  BUILD_DEPENDS="alsa-lib-dev jack-audio-connection-kit-dev"
    2.25  
    2.26 +HOST_ARCH="i486 arm"
    2.27 +
    2.28  # Rules to configure and make the package.
    2.29  compile_rules()
    2.30  {
    2.31 -	cd  $src
    2.32 -	./configure --prefix=/usr \
    2.33 -		--infodir=/usr/share/info \
    2.34 -		--mandir=/usr/share/man $CONFIGURE_ARGS &&
    2.35 +	./configure				\
    2.36 +		--prefix=/usr			\
    2.37 +		--infodir=/usr/share/info	\
    2.38 +		--mandir=/usr/share/man		\
    2.39 +		$CONFIGURE_ARGS &&
    2.40  	make &&
    2.41  	make DESTDIR=$DESTDIR install
    2.42  }