wok-6.x rev 25317
updated soundtouch and soundtouch-dev (2.1.2 -> 2.3.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jul 21 07:14:01 2022 +0100 (2022-07-21) |
parents | 0440e43a53b7 |
children | 64410514fac1 |
files | soundtouch-dev/receipt soundtouch/description.txt soundtouch/receipt |
line diff
1.1 --- a/soundtouch-dev/receipt Thu Jul 21 07:02:36 2022 +0100 1.2 +++ b/soundtouch-dev/receipt Thu Jul 21 07:14:01 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="soundtouch-dev" 1.7 -VERSION="2.1.2" 1.8 +VERSION="2.3.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for soundtouch." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 @@ -14,15 +14,11 @@ 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 - mkdir -p $fs/usr/share 1.18 - 1.19 - cp -a $install/usr/include $fs/usr 1.20 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.21 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.22 - cp -a $install/usr/share/aclocal $fs/usr/share 1.23 + cook_copy_folders aclocal 1.24 + cook_copy_folders include 1.25 + cook_copy_folders pkgconfig 1.26 + cook_copy_files *.*a 1.27 1.28 # Upstream changed pkgconfig filename 1.29 # ln -sf soundtouch-1.4.pc $fs/usr/lib/pkgconfig/soundtouch-1.0.pc 1.30 } 1.31 -
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/soundtouch/description.txt Thu Jul 21 07:14:01 2022 +0100 2.3 @@ -0,0 +1,18 @@ 2.4 +SoundTouch is an open-source audio processing library for 2.5 +changing the Tempo, Pitch and Playback Rates of audio 2.6 +streams or audio files. 2.7 +The library additionally supports estimating stable 2.8 +beats-per-minute rates for audio tracks. 2.9 + 2.10 +- Tempo (time stretch): Changes the sound to play at 2.11 + faster or slower tempo than originally without affecting 2.12 + the sound pitch. 2.13 +- Pitch (key): Changes the sound pitch or key while 2.14 + keeping the original tempo (speed). 2.15 +- Playback Rate: Changes both tempo and pitch together as 2.16 + if a vinyl disk was played at different RPM rate. 2.17 + 2.18 +The SoundTouch library is intended for application 2.19 +developers writing sound processing tools that require 2.20 +tempo or pitch control functionality, or just for playing 2.21 +around with the sound effects.
3.1 --- a/soundtouch/receipt Thu Jul 21 07:02:36 2022 +0100 3.2 +++ b/soundtouch/receipt Thu Jul 21 07:14:01 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="soundtouch" 3.7 -VERSION="2.1.2" 3.8 +VERSION="2.3.1" 3.9 CATEGORY="multimedia" 3.10 SHORT_DESC="An audio processing library." 3.11 MAINTAINER="slaxemulator@gmail.com" 3.12 @@ -9,7 +9,7 @@ 3.13 WEB_SITE="https://www.surina.net/soundtouch/" 3.14 3.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WGET_URL="https://codeberg.org/soundtouch/soundtouch/archive/$VERSION.tar.gz" 3.17 +WGET_URL="${WEB_SITE}$TARBALL" 3.18 3.19 DEPENDS="gcc-lib-base" 3.20 BUILD_DEPENDS="automake libtool" 3.21 @@ -37,8 +37,6 @@ 3.22 # Rules to gen a SliTaz package suitable for Tazpkg. 3.23 genpkg_rules() 3.24 { 3.25 - mkdir -p $fs/usr/lib 3.26 - 3.27 - cp -a $install/usr/bin $fs/usr 3.28 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.29 + cook_copy_folders bin 3.30 + cook_copy_files *.so* 3.31 }