# HG changeset patch # User Hans-G?nter Theisgen # Date 1648102778 -3600 # Node ID 193f02614bcf979b91a1e0f68140c9239443905f # Parent 561f632dc77e8c46213ed242b6b9fffd8480299e updated libsndfile and libsndfile-dev (1.0.28 -> 1.0.31) diff -r 561f632dc77e -r 193f02614bcf libsndfile-dev/receipt --- a/libsndfile-dev/receipt Thu Mar 24 06:49:50 2022 +0100 +++ b/libsndfile-dev/receipt Thu Mar 24 07:19:38 2022 +0100 @@ -1,24 +1,20 @@ # SliTaz package receipt. PACKAGE="libsndfile-dev" -VERSION="1.0.28" +VERSION="1.0.31" CATEGORY="development" -SHORT_DESC="libsndfile development files." +SHORT_DESC="Libsndfile development files." MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="http://www.mega-nerd.com/libsndfile/" +WEB_SITE="https://libsndfile.github.io/libsndfile/" +DEPENDS="libsndfile pkg-config" WANTED="libsndfile" -DEPENDS="libsndfile pkg-config" HOST_ARCH="i486 arm" # 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/*.*a $fs/usr/lib/ - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + get_dev_files } diff -r 561f632dc77e -r 193f02614bcf libsndfile/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libsndfile/description.txt Thu Mar 24 07:19:38 2022 +0100 @@ -0,0 +1,3 @@ +Libsndfile is a C library for reading and writing files containing sampled sound +(such as MS Windows WAV and the Apple/SGI AIFF format) through one standard +library interface. diff -r 561f632dc77e -r 193f02614bcf libsndfile/receipt --- a/libsndfile/receipt Thu Mar 24 06:49:50 2022 +0100 +++ b/libsndfile/receipt Thu Mar 24 07:19:38 2022 +0100 @@ -1,15 +1,15 @@ # SliTaz package receipt. PACKAGE="libsndfile" -VERSION="1.0.28" +VERSION="1.0.31" CATEGORY="multimedia" SHORT_DESC="A C library for reading and writing files containing sampled sound." MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="http://www.mega-nerd.com/libsndfile/" +WEB_SITE="https://libsndfile.github.io/libsndfile/" -TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="$WEB_SITE/files/$TARBALL" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/$VERSION/$TARBALL" DEPENDS="alsa-lib libvorbis" BUILD_DEPENDS="alsa-lib-dev libvorbis-dev" @@ -40,13 +40,12 @@ --prefix=/usr \ --disable-sqlite \ $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR install + make && + 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* }