wok diff esound/receipt @ rev 15135

python-werkzeug: typos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 10:36:33 2013 +0000 (2013-08-15)
parents 2afb3b834baa
children 223b265f40fd
line diff
     1.1 --- a/esound/receipt	Sun Dec 18 13:03:38 2011 +0100
     1.2 +++ b/esound/receipt	Thu Aug 15 10:36:33 2013 +0000
     1.3 @@ -3,34 +3,32 @@
     1.4  PACKAGE="esound"
     1.5  VERSION="0.2.41"
     1.6  CATEGORY="development"
     1.7 -SHORT_DESC="nlightened Sound Daemon"
     1.8 +SHORT_DESC="Enlightened Sound Daemon"
     1.9  MAINTAINER="allan316@gmail.com"
    1.10 +WEB_SITE="http://www.tux.org/~ricdude/EsounD.html"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/esound/0.2/$TARBALL"
    1.13 +TAGS="audio sound"
    1.14 +
    1.15  DEPENDS="audiofile alsa-lib"
    1.16  BUILD_DEPENDS="audiofile-dev alsa-lib-dev"
    1.17 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 -WEB_SITE="http://www.tux.org/~ricdude/EsounD.html"
    1.19 -WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/esound/0.2/$TARBALL"
    1.20 -TAGS="audio sound"
    1.21  
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	cd $src
    1.26  	./configure \
    1.27 -		--prefix=/usr \
    1.28  		--sysconfdir=/etc \
    1.29 -		--infodir=/usr/share/info \
    1.30 -		--mandir=/usr/share/man \
    1.31  		$CONFIGURE_ARGS &&
    1.32 -	make && make DESTDIR=$PWD/_pkg install
    1.33 +	make &&
    1.34 +	make DESTDIR=$install install
    1.35  }
    1.36  
    1.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.38  genpkg_rules()
    1.39  {
    1.40  	mkdir -p $fs/usr/lib
    1.41 -	cp -a $_pkg/usr/bin $fs/usr
    1.42 -	cp -a $_pkg/etc $fs
    1.43 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.44 +	cp -a $install/usr/bin $fs/usr
    1.45 +	cp -a $install/etc $fs
    1.46 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.47  }
    1.48