wok annotate alsaequal/receipt @ rev 9770

libgnomeprintui: Fix BUILD_DEPENDS and clean-up
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 11 20:32:36 2011 +0200 (2011-05-11)
parents 59e66b4ed5ee
children 617dbdeb6f7e
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@7623 8 DEPENDS="alsa-utils caps"
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 cd $src
paul@7621 18 make
paul@7621 19 }
paul@7621 20
paul@7621 21 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@7621 22 genpkg_rules()
paul@7621 23 {
paul@7621 24 mkdir -p $fs/usr/lib/alsa-lib
paul@7621 25 cp -a $src/*.so* $fs/usr/lib/alsa-lib
paul@7621 26 }
paul@7621 27