wok rev 21299

updated libsndfile and libsndfile-dev (1.0.23 -> 1.0.28)
author Hans-G?nter Theisgen
date Wed Apr 17 17:09:11 2019 +0100 (2019-04-17)
parents 60debd434ad3
children 0f6010fa834a
files libsndfile-dev/receipt libsndfile/receipt
line diff
     1.1 --- a/libsndfile-dev/receipt	Wed Apr 17 16:54:30 2019 +0100
     1.2 +++ b/libsndfile-dev/receipt	Wed Apr 17 17:09:11 2019 +0100
     1.3 @@ -1,22 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libsndfile-dev"
     1.7 -VERSION="1.0.23"
     1.8 +VERSION="1.0.28"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="libsndfile devel 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 +
    1.16  WANTED="libsndfile"
    1.17 -WEB_SITE="http://www.mega-nerd.com/libsndfile/"
    1.18 +DEPENDS="libsndfile pkg-config"
    1.19 +
    1.20  HOST_ARCH="i486 arm"
    1.21  
    1.22 -DEPENDS="libsndfile pkg-config"
    1.23 -
    1.24  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.25  genpkg_rules()
    1.26  {
    1.27  	mkdir -p $fs/usr/lib 
    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 +
    1.32 +	cp -a $install/usr/include		$fs/usr
    1.33 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib/
    1.34 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.35  }
     2.1 --- a/libsndfile/receipt	Wed Apr 17 16:54:30 2019 +0100
     2.2 +++ b/libsndfile/receipt	Wed Apr 17 17:09:11 2019 +0100
     2.3 @@ -1,19 +1,21 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libsndfile"
     2.7 -VERSION="1.0.23"
     2.8 +VERSION="1.0.28"
     2.9  CATEGORY="multimedia"
    2.10 -SHORT_DESC="A C library for reading and writing files containing sampled sound"
    2.11 +SHORT_DESC="A C library for reading and writing files containing sampled sound."
    2.12  MAINTAINER="jozee@slitaz.org"
    2.13  LICENSE="LGPL2.1"
    2.14 +WEB_SITE="http://www.mega-nerd.com/libsndfile/" 
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17 -WEB_SITE="http://www.mega-nerd.com/libsndfile/" 
    2.18  WGET_URL="$WEB_SITE/files/$TARBALL"
    2.19 -HOST_ARCH="i486 arm"
    2.20  
    2.21  DEPENDS="alsa-lib libvorbis"
    2.22  BUILD_DEPENDS="alsa-lib-dev libvorbis-dev"
    2.23  
    2.24 +HOST_ARCH="i486 arm"
    2.25 +
    2.26  # Handle slitaz arch
    2.27  case "$SLITAZ_ARCH" in
    2.28  	i?86) DEPENDS="$DEPENDS flac" ;;
    2.29 @@ -27,9 +29,11 @@
    2.30  # Rules to configure and make the package.
    2.31  compile_rules()
    2.32  {
    2.33 -	cd $src
    2.34 -	./configure --prefix=/usr --disable-sqlite $CONFIGURE_ARGS &&
    2.35 -	make &&
    2.36 +	./configure			\
    2.37 +		--prefix=/usr		\
    2.38 +		--disable-sqlite	\
    2.39 +		$CONFIGURE_ARGS &&
    2.40 +	make -j 1 &&
    2.41  	make DESTDIR=$DESTDIR install
    2.42  }
    2.43