wok annotate caps/receipt @ rev 13153
zerobin: add purge.sh (for crontab)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jul 16 10:19:42 2012 +0200 (2012-07-16) |
parents | 869d83df08c6 |
children | 00c51b3a010b |
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" |
paul@7620 | 8 DEPENDS="" |
paul@7620 | 9 BUILD_DEPENDS="python" |
paul@7620 | 10 TARBALL="${PACKAGE}_${VERSION}.tar.gz" |
paul@7620 | 11 WEB_SITE="http://quitte.de/dsp/caps.html" |
paul@7620 | 12 WGET_URL="http://quitte.de/dsp/$TARBALL" |
paul@7620 | 13 |
paul@7620 | 14 # Rules to configure and make the package. |
paul@7620 | 15 compile_rules() |
paul@7620 | 16 { |
paul@7620 | 17 cd $src |
paul@7620 | 18 ./configure.py |
paul@7620 | 19 make rdf |
paul@7620 | 20 make caps.so |
paul@7620 | 21 } |
paul@7620 | 22 |
paul@7620 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@7620 | 24 genpkg_rules() |
paul@7620 | 25 { |
paul@7620 | 26 mkdir -p $fs/usr/lib/ladspa $fs/usr/share/ladspa/rdf |
paul@7620 | 27 cp -a $src/caps.rdf $fs/usr/share/ladspa/rdf |
paul@7620 | 28 cp -a $src/caps.so $fs/usr/lib/ladspa |
paul@7620 | 29 } |
paul@7620 | 30 |