wok rev 24831

updated libsndfile and libsndfile-dev (1.0.28 -> 1.0.31)
author Hans-G?nter Theisgen
date Thu Mar 24 07:19:38 2022 +0100 (2022-03-24)
parents 561f632dc77e
children 245803765742
files libsndfile-dev/receipt libsndfile/description.txt libsndfile/receipt
line diff
     1.1 --- a/libsndfile-dev/receipt	Thu Mar 24 06:49:50 2022 +0100
     1.2 +++ b/libsndfile-dev/receipt	Thu Mar 24 07:19:38 2022 +0100
     1.3 @@ -1,24 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libsndfile-dev"
     1.7 -VERSION="1.0.28"
     1.8 +VERSION="1.0.31"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="libsndfile development files."
    1.11 +SHORT_DESC="Libsndfile development files."
    1.12  MAINTAINER="jozee@slitaz.org"
    1.13  LICENSE="LGPL2.1"
    1.14 -WEB_SITE="http://www.mega-nerd.com/libsndfile/"
    1.15 +WEB_SITE="https://libsndfile.github.io/libsndfile/" 
    1.16  
    1.17 +DEPENDS="libsndfile pkg-config"
    1.18  WANTED="libsndfile"
    1.19 -DEPENDS="libsndfile pkg-config"
    1.20  
    1.21  HOST_ARCH="i486 arm"
    1.22  
    1.23  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.24  genpkg_rules()
    1.25  {
    1.26 -	mkdir -p $fs/usr/lib 
    1.27 -
    1.28 -	cp -a $install/usr/include		$fs/usr
    1.29 -	cp -a $install/usr/lib/*.*a		$fs/usr/lib/
    1.30 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.31 +	get_dev_files
    1.32  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libsndfile/description.txt	Thu Mar 24 07:19:38 2022 +0100
     2.3 @@ -0,0 +1,3 @@
     2.4 +Libsndfile is a C library for reading and writing files containing sampled sound
     2.5 +(such as MS Windows WAV and the Apple/SGI AIFF format) through one standard
     2.6 +library interface.
     3.1 --- a/libsndfile/receipt	Thu Mar 24 06:49:50 2022 +0100
     3.2 +++ b/libsndfile/receipt	Thu Mar 24 07:19:38 2022 +0100
     3.3 @@ -1,15 +1,15 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libsndfile"
     3.7 -VERSION="1.0.28"
     3.8 +VERSION="1.0.31"
     3.9  CATEGORY="multimedia"
    3.10  SHORT_DESC="A C library for reading and writing files containing sampled sound."
    3.11  MAINTAINER="jozee@slitaz.org"
    3.12  LICENSE="LGPL2.1"
    3.13 -WEB_SITE="http://www.mega-nerd.com/libsndfile/" 
    3.14 +WEB_SITE="https://libsndfile.github.io/libsndfile/" 
    3.15  
    3.16 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.17 -WGET_URL="$WEB_SITE/files/$TARBALL"
    3.18 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.19 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/$VERSION/$TARBALL"
    3.20  
    3.21  DEPENDS="alsa-lib libvorbis"
    3.22  BUILD_DEPENDS="alsa-lib-dev libvorbis-dev"
    3.23 @@ -40,13 +40,12 @@
    3.24  		--prefix=/usr		\
    3.25  		--disable-sqlite	\
    3.26  		$CONFIGURE_ARGS &&
    3.27 -	make -j 1 &&
    3.28 -	make DESTDIR=$DESTDIR install
    3.29 +	make &&
    3.30 +	make install DESTDIR=$DESTDIR
    3.31  }
    3.32  
    3.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.34  genpkg_rules()
    3.35  {
    3.36 -	mkdir -p $fs/usr/lib
    3.37 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.38 +	cook_copy_files	*.so*
    3.39  }