wok-6.x rev 25146
updated portaudio and portaudio-dev (190600_20161030 -> 19.7.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jun 29 15:26:46 2022 +0100 (2022-06-29) |
parents | 8dad5987f564 |
children | 962c37121e05 |
files | portaudio-dev/receipt portaudio/description.txt portaudio/receipt |
line diff
1.1 --- a/portaudio-dev/receipt Wed Jun 29 15:03:18 2022 +0100 1.2 +++ b/portaudio-dev/receipt Wed Jun 29 15:26:46 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="portaudio-dev" 1.7 -VERSION="190600_20161030" 1.8 +VERSION="19.7.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Portaudio - development files." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 @@ -16,9 +16,7 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.19 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.20 - cp -a $install/usr/include $fs/usr 1.21 + cook_copy_folders include 1.22 + cook_copy_folders pkgconfig 1.23 + cook_copy_files *.*a 1.24 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/portaudio/description.txt Wed Jun 29 15:26:46 2022 +0100 2.3 @@ -0,0 +1,12 @@ 2.4 +PortAudio is a free, cross-platform, open-source, audio I/O library. 2.5 + It lets you write simple audio programs in 'C' or C++ that will 2.6 +compile and run on many platforms including Windows, Macintosh OS X, 2.7 +and Unix (OSS/ALSA). 2.8 +It is intended to promote the exchange of audio software between 2.9 +developers on different platforms. 2.10 +Many applications use PortAudio for Audio I/O. 2.11 + 2.12 +PortAudio provides a very simple API for recording or playing sound 2.13 +using a simple callback function or a blocking read and write interface. 2.14 +Example programs are included that play sine waves, process audio input 2.15 +(guitar fuzz), record and playback audio, list available audio devices, etc.
3.1 --- a/portaudio/receipt Wed Jun 29 15:03:18 2022 +0100 3.2 +++ b/portaudio/receipt Wed Jun 29 15:26:46 2022 +0100 3.3 @@ -1,15 +1,15 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="portaudio" 3.7 -VERSION="190600_20161030" 3.8 +VERSION="19.7.0" 3.9 CATEGORY="system-tools" 3.10 SHORT_DESC="A portable cross-platform audio API." 3.11 MAINTAINER="erjo@slitaz.org" 3.12 LICENSE="MIT" 3.13 WEB_SITE="http://www.portaudio.com/" 3.14 3.15 -TARBALL="pa_stable_v${VERSION}.tgz" 3.16 -WGET_URL="http://www.portaudio.com/archives/$TARBALL" 3.17 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.18 +WGET_URL="https://github.com/PortAudio/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz" 3.19 3.20 DEPENDS="alsa-lib jack-audio-connection-kit" 3.21 BUILD_DEPENDS="alsa-lib-dev jack-audio-connection-kit-dev" 3.22 @@ -32,12 +32,11 @@ 3.23 --mandir=/usr/share/man \ 3.24 $CONFIGURE_ARGS && 3.25 make && 3.26 - make DESTDIR=$DESTDIR install 3.27 + make install DESTDIR=$DESTDIR 3.28 } 3.29 3.30 # Rules to gen a SliTaz package suitable for Tazpkg. 3.31 genpkg_rules() 3.32 { 3.33 - mkdir -p $fs/usr/lib 3.34 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.35 + cook_copy_files *.so* 3.36 }