# HG changeset patch # User Aleksej Bobylev # Date 1362046371 0 # Node ID 48b4aa56e08ed4989b09280eb9c494a569704a15 # Parent fff8d437ac2daa112817b979797f6f4480de26fe esound: recook using existing upgraded audiofile-1 instead of absent old audiofile-0 diff -r fff8d437ac2d -r 48b4aa56e08e esound-dev/receipt --- a/esound-dev/receipt Thu Feb 28 09:47:02 2013 +0000 +++ b/esound-dev/receipt Thu Feb 28 10:12:51 2013 +0000 @@ -3,19 +3,20 @@ PACKAGE="esound-dev" VERSION="0.2.41" CATEGORY="development" -SHORT_DESC="nlightened Sound Daemon" +SHORT_DESC="Enlightened Sound Daemon" MAINTAINER="allan316@gmail.com" +WEB_SITE="http://www.tux.org/~ricdude/EsounD.html" + +WANTED="esound" DEPENDS="esound" -WEB_SITE="http://www.tux.org/~ricdude/EsounD.html" -WANTED="esound" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr - cp -a $_pkg/usr/lib/*.la $fs/usr/lib - cp -a $_pkg/usr/lib/*.a $fs/usr/lib - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.la $fs/usr/lib + cp -a $install/usr/lib/*.a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r fff8d437ac2d -r 48b4aa56e08e esound/receipt --- a/esound/receipt Thu Feb 28 09:47:02 2013 +0000 +++ b/esound/receipt Thu Feb 28 10:12:51 2013 +0000 @@ -3,34 +3,32 @@ PACKAGE="esound" VERSION="0.2.41" CATEGORY="development" -SHORT_DESC="nlightened Sound Daemon" +SHORT_DESC="Enlightened Sound Daemon" MAINTAINER="allan316@gmail.com" +WEB_SITE="http://www.tux.org/~ricdude/EsounD.html" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/esound/0.2/$TARBALL" +TAGS="audio sound" + DEPENDS="audiofile alsa-lib" BUILD_DEPENDS="audiofile-dev alsa-lib-dev" -TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.tux.org/~ricdude/EsounD.html" -WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/esound/0.2/$TARBALL" -TAGS="audio sound" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ - --prefix=/usr \ --sysconfdir=/etc \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ $CONFIGURE_ARGS && - make && make DESTDIR=$PWD/_pkg install + make && + make DESTDIR=$install install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/etc $fs - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/etc $fs + cp -a $install/usr/lib/*.so* $fs/usr/lib }