wok diff libsndfile/receipt @ rev 16109

ARM: add Xrandr support, xsetroot and xmessage
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 19 22:48:37 2014 +0100 (2014-03-19)
parents bc341388571d
children 90efe33adc11
line diff
     1.1 --- a/libsndfile/receipt	Wed Oct 13 22:01:19 2010 +0000
     1.2 +++ b/libsndfile/receipt	Wed Mar 19 22:48:37 2014 +0100
     1.3 @@ -5,25 +5,26 @@
     1.4  CATEGORY="multimedia"
     1.5  SHORT_DESC="A C library for reading and writing files containing sampled sound"
     1.6  MAINTAINER="jozee@slitaz.org"
     1.7 -DEPENDS="alsa-lib flac libvorbis"
     1.8 -BUILD_DEPENDS="alsa-lib alsa-lib-dev flac-dev"
     1.9 +LICENSE="LGPL2.1"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://www.mega-nerd.com/libsndfile/" 
    1.12  WGET_URL="$WEB_SITE/files/$TARBALL"
    1.13  
    1.14 +DEPENDS="alsa-lib flac libvorbis"
    1.15 +BUILD_DEPENDS="alsa-lib alsa-lib-dev flac-dev"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20  	cd $src
    1.21  	./configure --prefix=/usr --disable-sqlite $CONFIGURE_ARGS &&
    1.22  	make &&
    1.23 -	make DESTDIR=$PWD/_pkg install
    1.24 +	make DESTDIR=$DESTDIR install
    1.25  }
    1.26  
    1.27  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.28  genpkg_rules()
    1.29  {
    1.30  	mkdir -p $fs/usr/lib
    1.31 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.32 -
    1.33 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.34  }