# HG changeset patch # User Hans-G?nter Theisgen # Date 1659537397 -3600 # Node ID 8d429ff324a24e3a61d165a3a4f1895fa9df241e # Parent 54dc13c9ffd09fde64e02c057a5712e3ee508415 updated wavpack and wavpack-dev (5.3.0 -> 5.5.0) diff -r 54dc13c9ffd0 -r 8d429ff324a2 wavpack-dev/receipt --- a/wavpack-dev/receipt Wed Aug 03 15:11:06 2022 +0100 +++ b/wavpack-dev/receipt Wed Aug 03 15:36:37 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="wavpack-dev" -VERSION="5.3.0" +VERSION="5.5.0" CATEGORY="development" SHORT_DESC="Development files for wavpack." MAINTAINER="slaxemulator@gmail.com" @@ -14,9 +14,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib + get_dev_files } diff -r 54dc13c9ffd0 -r 8d429ff324a2 wavpack/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wavpack/description.txt Wed Aug 03 15:36:37 2022 +0100 @@ -0,0 +1,24 @@ +WavPack is a completely open audio compression format providing lossless, +high-quality lossy, and a unique hybrid compression mode. + +In the default lossless mode WavPack acts just like a WinZip compressor +for audio files. However, unlike MP3 or WMA encoding which can affect the +sound quality, not a single bit of the original information is lost, so +there's no chance of degradation. This makes lossless mode ideal for +archiving audio material or any other situation where quality is paramount. +The compression ratio depends on the source material, but generally is +between 30% and 70%. + +The hybrid mode provides all the advantages of lossless compression with an +additional bonus. Instead of creating a single file, this mode creates both +a relatively small, high-quality lossy file that can be used all by itself, +and a "correction" file that (when combined with the lossy file) provides +full lossless restoration. For some users this means never having to choose +between lossless and lossy compression! + +WavPack employs only well known, public domain techniques (i.e., linear +prediction with LMS adaptation, Elias and Golomb codes) in its +implementation. +Methods and algorithms that have ever been patented (e.g., arithmetic +coding, LZW compression) are specifically avoided. This ensures that WavPack +encoders and decoders will remain open and royalty-free. diff -r 54dc13c9ffd0 -r 8d429ff324a2 wavpack/receipt --- a/wavpack/receipt Wed Aug 03 15:11:06 2022 +0100 +++ b/wavpack/receipt Wed Aug 03 15:36:37 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="wavpack" -VERSION="5.3.0" +VERSION="5.5.0" CATEGORY="multimedia" SHORT_DESC="Auto compression format with lossless, lossy, and hybrid compression modes." MAINTAINER="slaxemulator@gmail.com" @@ -28,16 +28,15 @@ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ + --enable-static \ $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/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }