wok-6.x annotate alsaequal/receipt @ rev 7621
Add alsaequal
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sun Dec 12 17:12:54 2010 +0000 (2010-12-12) |
parents | |
children | 59e66b4ed5ee |
rev | line source |
---|---|
paul@7621 | 1 # SliTaz package receipt. |
paul@7621 | 2 |
paul@7621 | 3 PACKAGE="alsaequal" |
paul@7621 | 4 VERSION="0.6" |
paul@7621 | 5 CATEGORY="multimedia" |
paul@7621 | 6 SHORT_DESC="Real-time adjustable equalizer plugin for ALSA." |
paul@7621 | 7 MAINTAINER="paul@slitaz.org" |
paul@7621 | 8 DEPENDS="alsa-utils" |
paul@7621 | 9 BUILD_DEPENDS="caps alsa-lib-dev" |
paul@7621 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@7621 | 11 WEB_SITE="http://www.thedigitalmachine.net/alsaequal.html" |
paul@7621 | 12 WGET_URL="http://www.thedigitalmachine.net/tools/$TARBALL" |
paul@7621 | 13 |
paul@7621 | 14 # Rules to configure and make the package. |
paul@7621 | 15 compile_rules() |
paul@7621 | 16 { |
paul@7621 | 17 src=$PACKAGE |
paul@7621 | 18 cd $src |
paul@7621 | 19 make |
paul@7621 | 20 } |
paul@7621 | 21 |
paul@7621 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@7621 | 23 genpkg_rules() |
paul@7621 | 24 { |
paul@7621 | 25 mkdir -p $fs/usr/lib/alsa-lib |
paul@7621 | 26 src=$PACKAGE |
paul@7621 | 27 cp -a $src/*.so* $fs/usr/lib/alsa-lib |
paul@7621 | 28 } |
paul@7621 | 29 |