wok annotate caps/receipt @ rev 24615

updated goocanvas and goocanvas-dev (2.0.4 -> 3.0.0)
author Hans-G?nter Theisgen
date Mon Mar 07 07:34:10 2022 +0100 (2022-03-07)
parents f85199bb75ff
children
rev   line source
paul@7620 1 # SliTaz package receipt.
paul@7620 2
paul@7620 3 PACKAGE="caps"
Hans-G?nter@20767 4 VERSION="0.9.26"
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"
Hans-G?nter@20767 10
Hans-G?nter@20767 11 TARBALL="${PACKAGE}_${VERSION}.tar.bz2"
al@14793 12 WGET_URL="http://quitte.de/dsp/$TARBALL"
al@14793 13
paul@7620 14 DEPENDS=""
paul@7620 15 BUILD_DEPENDS="python"
paul@7620 16
pascal@24436 17 # What is the latest version available today?
pascal@24436 18 current_version()
pascal@24436 19 {
pascal@24436 20 wget -O - http://quitte.de/dsp/caps.html 2>/dev/null | \
pascal@24436 21 sed "/latest/d;/${PACKAGE}_[0-9]/!d;/tar/!d;s|.*${PACKAGE}_||;s|.tar.*||;q"
pascal@24436 22 }
pascal@24436 23
paul@7620 24 # Rules to configure and make the package.
paul@7620 25 compile_rules()
paul@7620 26 {
paul@7620 27 ./configure.py
paul@7620 28 make rdf
paul@7620 29 make caps.so
paul@7620 30 }
paul@7620 31
paul@7620 32 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@7620 33 genpkg_rules()
paul@7620 34 {
paul@7620 35 mkdir -p $fs/usr/lib/ladspa $fs/usr/share/ladspa/rdf
al@14793 36 cp $src/caps.rdf $fs/usr/share/ladspa/rdf
paul@7620 37 cp -a $src/caps.so $fs/usr/lib/ladspa
paul@7620 38 }