# HG changeset patch # User Hans-G?nter Theisgen # Date 1658384041 -3600 # Node ID db95e4ba6e6501748115f907a5b69ae61d5f7cbb # Parent 0440e43a53b7c51034f896c595032a3c7414c87d updated soundtouch and soundtouch-dev (2.1.2 -> 2.3.1) diff -r 0440e43a53b7 -r db95e4ba6e65 soundtouch-dev/receipt --- a/soundtouch-dev/receipt Thu Jul 21 07:02:36 2022 +0100 +++ b/soundtouch-dev/receipt Thu Jul 21 07:14:01 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="soundtouch-dev" -VERSION="2.1.2" +VERSION="2.3.1" CATEGORY="development" SHORT_DESC="Development files for soundtouch." MAINTAINER="slaxemulator@gmail.com" @@ -14,15 +14,11 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - mkdir -p $fs/usr/share - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/share/aclocal $fs/usr/share + cook_copy_folders aclocal + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a # Upstream changed pkgconfig filename # ln -sf soundtouch-1.4.pc $fs/usr/lib/pkgconfig/soundtouch-1.0.pc } - diff -r 0440e43a53b7 -r db95e4ba6e65 soundtouch/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/soundtouch/description.txt Thu Jul 21 07:14:01 2022 +0100 @@ -0,0 +1,18 @@ +SoundTouch is an open-source audio processing library for +changing the Tempo, Pitch and Playback Rates of audio +streams or audio files. +The library additionally supports estimating stable +beats-per-minute rates for audio tracks. + +- Tempo (time stretch): Changes the sound to play at + faster or slower tempo than originally without affecting + the sound pitch. +- Pitch (key): Changes the sound pitch or key while + keeping the original tempo (speed). +- Playback Rate: Changes both tempo and pitch together as + if a vinyl disk was played at different RPM rate. + +The SoundTouch library is intended for application +developers writing sound processing tools that require +tempo or pitch control functionality, or just for playing +around with the sound effects. diff -r 0440e43a53b7 -r db95e4ba6e65 soundtouch/receipt --- a/soundtouch/receipt Thu Jul 21 07:02:36 2022 +0100 +++ b/soundtouch/receipt Thu Jul 21 07:14:01 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="soundtouch" -VERSION="2.1.2" +VERSION="2.3.1" CATEGORY="multimedia" SHORT_DESC="An audio processing library." MAINTAINER="slaxemulator@gmail.com" @@ -9,7 +9,7 @@ WEB_SITE="https://www.surina.net/soundtouch/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="https://codeberg.org/soundtouch/soundtouch/archive/$VERSION.tar.gz" +WGET_URL="${WEB_SITE}$TARBALL" DEPENDS="gcc-lib-base" BUILD_DEPENDS="automake libtool" @@ -37,8 +37,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }