wok annotate caps/receipt @ rev 17747

discount: fix TARBALL name
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 07 23:52:35 2015 +0100 (2015-03-07)
parents 00c51b3a010b
children f85199bb75ff
rev   line source
paul@7620 1 # SliTaz package receipt.
paul@7620 2
paul@7620 3 PACKAGE="caps"
paul@7620 4 VERSION="0.4.4"
paul@7622 5 CATEGORY="multimedia"
paul@7620 6 SHORT_DESC="The CAPS Audio Plugin Suite."
paul@7620 7 MAINTAINER="paul@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
al@14793 9 WEB_SITE="http://quitte.de/dsp/caps.html"
al@14793 10 TARBALL="${PACKAGE}_${VERSION}.tar.gz"
al@14793 11 WGET_URL="http://quitte.de/dsp/$TARBALL"
al@14793 12
paul@7620 13 DEPENDS=""
paul@7620 14 BUILD_DEPENDS="python"
paul@7620 15
paul@7620 16 # Rules to configure and make the package.
paul@7620 17 compile_rules()
paul@7620 18 {
paul@7620 19 cd $src
paul@7620 20 ./configure.py
paul@7620 21 make rdf
paul@7620 22 make caps.so
paul@7620 23 }
paul@7620 24
paul@7620 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@7620 26 genpkg_rules()
paul@7620 27 {
paul@7620 28 mkdir -p $fs/usr/lib/ladspa $fs/usr/share/ladspa/rdf
al@14793 29 cp $src/caps.rdf $fs/usr/share/ladspa/rdf
paul@7620 30 cp -a $src/caps.so $fs/usr/lib/ladspa
paul@7620 31 }