# HG changeset patch # User Hans-G?nter Theisgen # Date 1555517351 -3600 # Node ID eb224fc2046209c13383164b3fd169513d6126be # Parent 60debd434ad3d2672d655f21601e0bc6d5bd9207 updated libsndfile and libsndfile-dev (1.0.23 -> 1.0.28) diff -r 60debd434ad3 -r eb224fc20462 libsndfile-dev/receipt --- a/libsndfile-dev/receipt Wed Apr 17 16:54:30 2019 +0100 +++ b/libsndfile-dev/receipt Wed Apr 17 17:09:11 2019 +0100 @@ -1,22 +1,24 @@ # SliTaz package receipt. PACKAGE="libsndfile-dev" -VERSION="1.0.23" +VERSION="1.0.28" CATEGORY="development" -SHORT_DESC="libsndfile devel files" +SHORT_DESC="libsndfile development files." MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2.1" +WEB_SITE="http://www.mega-nerd.com/libsndfile/" + WANTED="libsndfile" -WEB_SITE="http://www.mega-nerd.com/libsndfile/" +DEPENDS="libsndfile pkg-config" + HOST_ARCH="i486 arm" -DEPENDS="libsndfile pkg-config" - # 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 + + 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 } diff -r 60debd434ad3 -r eb224fc20462 libsndfile/receipt --- a/libsndfile/receipt Wed Apr 17 16:54:30 2019 +0100 +++ b/libsndfile/receipt Wed Apr 17 17:09:11 2019 +0100 @@ -1,19 +1,21 @@ # SliTaz package receipt. PACKAGE="libsndfile" -VERSION="1.0.23" +VERSION="1.0.28" CATEGORY="multimedia" -SHORT_DESC="A C library for reading and writing files containing sampled sound" +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/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.mega-nerd.com/libsndfile/" WGET_URL="$WEB_SITE/files/$TARBALL" -HOST_ARCH="i486 arm" DEPENDS="alsa-lib libvorbis" BUILD_DEPENDS="alsa-lib-dev libvorbis-dev" +HOST_ARCH="i486 arm" + # Handle slitaz arch case "$SLITAZ_ARCH" in i?86) DEPENDS="$DEPENDS flac" ;; @@ -27,9 +29,11 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --disable-sqlite $CONFIGURE_ARGS && - make && + ./configure \ + --prefix=/usr \ + --disable-sqlite \ + $CONFIGURE_ARGS && + make -j 1 && make DESTDIR=$DESTDIR install }