wok-6.x rev 25406
updated wavpack and wavpack-dev (5.3.0 -> 5.5.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Aug 03 15:36:37 2022 +0100 (2022-08-03) |
parents | 54dc13c9ffd0 |
children | f15be612c035 |
files | wavpack-dev/receipt wavpack/description.txt wavpack/receipt |
line diff
1.1 --- a/wavpack-dev/receipt Wed Aug 03 15:11:06 2022 +0100 1.2 +++ b/wavpack-dev/receipt Wed Aug 03 15:36:37 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="wavpack-dev" 1.7 -VERSION="5.3.0" 1.8 +VERSION="5.5.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for wavpack." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 @@ -14,9 +14,5 @@ 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/include $fs/usr 1.19 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.20 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.21 + get_dev_files 1.22 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/wavpack/description.txt Wed Aug 03 15:36:37 2022 +0100 2.3 @@ -0,0 +1,24 @@ 2.4 +WavPack is a completely open audio compression format providing lossless, 2.5 +high-quality lossy, and a unique hybrid compression mode. 2.6 + 2.7 +In the default lossless mode WavPack acts just like a WinZip compressor 2.8 +for audio files. However, unlike MP3 or WMA encoding which can affect the 2.9 +sound quality, not a single bit of the original information is lost, so 2.10 +there's no chance of degradation. This makes lossless mode ideal for 2.11 +archiving audio material or any other situation where quality is paramount. 2.12 +The compression ratio depends on the source material, but generally is 2.13 +between 30% and 70%. 2.14 + 2.15 +The hybrid mode provides all the advantages of lossless compression with an 2.16 +additional bonus. Instead of creating a single file, this mode creates both 2.17 +a relatively small, high-quality lossy file that can be used all by itself, 2.18 +and a "correction" file that (when combined with the lossy file) provides 2.19 +full lossless restoration. For some users this means never having to choose 2.20 +between lossless and lossy compression! 2.21 + 2.22 +WavPack employs only well known, public domain techniques (i.e., linear 2.23 +prediction with LMS adaptation, Elias and Golomb codes) in its 2.24 +implementation. 2.25 +Methods and algorithms that have ever been patented (e.g., arithmetic 2.26 +coding, LZW compression) are specifically avoided. This ensures that WavPack 2.27 +encoders and decoders will remain open and royalty-free.
3.1 --- a/wavpack/receipt Wed Aug 03 15:11:06 2022 +0100 3.2 +++ b/wavpack/receipt Wed Aug 03 15:36:37 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="wavpack" 3.7 -VERSION="5.3.0" 3.8 +VERSION="5.5.0" 3.9 CATEGORY="multimedia" 3.10 SHORT_DESC="Auto compression format with lossless, lossy, and hybrid compression modes." 3.11 MAINTAINER="slaxemulator@gmail.com" 3.12 @@ -28,16 +28,15 @@ 3.13 --prefix=/usr \ 3.14 --infodir=/usr/share/info \ 3.15 --mandir=/usr/share/man \ 3.16 + --enable-static \ 3.17 $CONFIGURE_ARGS && 3.18 make && 3.19 - make DESTDIR=$DESTDIR install 3.20 + make install DESTDIR=$DESTDIR 3.21 } 3.22 3.23 # Rules to gen a SliTaz package suitable for Tazpkg. 3.24 genpkg_rules() 3.25 { 3.26 - mkdir -p $fs/usr/lib 3.27 - 3.28 - cp -a $install/usr/bin $fs/usr 3.29 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.30 + cook_copy_folders bin 3.31 + cook_copy_files *.so* 3.32 }