# HG changeset patch # User Allan Pinto # Date 1243511213 0 # Node ID 363be972f0248d9fb3b3c24a16f146009fd844db # Parent 39f7ed4719c1ddb0c2c56d52c6e152b8e958e448 added audacity diff -r 39f7ed4719c1 -r 363be972f024 audacity/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/audacity/receipt Thu May 28 11:46:53 2009 +0000 @@ -0,0 +1,36 @@ +# SliTaz package receipt. + +PACKAGE="audacity" +VERSION="1.3.7" +CATEGORY="multimedia" +SHORT_DESC="software for recording and editing sounds" +MAINTAINER="allan316@gmail.com" +DEPENDS="wxWidgets ffmpeg libvorbis imlib2 libid3tag libmad flac libsndfile lame alsa-lib" +BUILD_DEPENDS="wxWidgets-dev ffmpeg-dev libvorbis-dev libmad-dev flac-dev libsndfile-dev lame-dev alsa-lib-dev" +TARBALL="$PACKAGE-minsrc-$VERSION.tar.bz2" +WEB_SITE="http://audacity.sourceforge.net" +WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/audacity/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + local src=$PACKAGE-src-$VERSION + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + local _pkg=$WOK/$PACKAGE/$PACKAGE-src-$VERSION/_pkg + echo $_pkg + mkdir -p $fs/usr $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/applications $fs/usr/share +} +