# HG changeset patch # User Hans-G?nter Theisgen # Date 1656512806 -3600 # Node ID ebe8a20944ecfa421d3140729fa8d670ed490986 # Parent 8dad5987f564170bad14728c614694a887a13afa updated portaudio and portaudio-dev (190600_20161030 -> 19.7.0) diff -r 8dad5987f564 -r ebe8a20944ec portaudio-dev/receipt --- a/portaudio-dev/receipt Wed Jun 29 15:03:18 2022 +0100 +++ b/portaudio-dev/receipt Wed Jun 29 15:26:46 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="portaudio-dev" -VERSION="190600_20161030" +VERSION="19.7.0" CATEGORY="development" SHORT_DESC="Portaudio - development files." MAINTAINER="erjo@slitaz.org" @@ -16,9 +16,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r 8dad5987f564 -r ebe8a20944ec portaudio/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/portaudio/description.txt Wed Jun 29 15:26:46 2022 +0100 @@ -0,0 +1,12 @@ +PortAudio is a free, cross-platform, open-source, audio I/O library. + It lets you write simple audio programs in 'C' or C++ that will +compile and run on many platforms including Windows, Macintosh OS X, +and Unix (OSS/ALSA). +It is intended to promote the exchange of audio software between +developers on different platforms. +Many applications use PortAudio for Audio I/O. + +PortAudio provides a very simple API for recording or playing sound +using a simple callback function or a blocking read and write interface. +Example programs are included that play sine waves, process audio input +(guitar fuzz), record and playback audio, list available audio devices, etc. diff -r 8dad5987f564 -r ebe8a20944ec portaudio/receipt --- a/portaudio/receipt Wed Jun 29 15:03:18 2022 +0100 +++ b/portaudio/receipt Wed Jun 29 15:26:46 2022 +0100 @@ -1,15 +1,15 @@ # SliTaz package receipt. PACKAGE="portaudio" -VERSION="190600_20161030" +VERSION="19.7.0" CATEGORY="system-tools" SHORT_DESC="A portable cross-platform audio API." MAINTAINER="erjo@slitaz.org" LICENSE="MIT" WEB_SITE="http://www.portaudio.com/" -TARBALL="pa_stable_v${VERSION}.tgz" -WGET_URL="http://www.portaudio.com/archives/$TARBALL" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/PortAudio/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz" DEPENDS="alsa-lib jack-audio-connection-kit" BUILD_DEPENDS="alsa-lib-dev jack-audio-connection-kit-dev" @@ -32,12 +32,11 @@ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }