wok annotate lv2/receipt @ rev 15274

mingw32-gcc: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 25 16:27:31 2013 +0000 (2013-09-25)
parents
children 2a5cc8208d36
rev   line source
pascal@13384 1 # SliTaz package receipt.
pascal@13384 2
pascal@13384 3 PACKAGE="lv2"
pascal@13384 4 VERSION="1.0.0"
pascal@13384 5 CATEGORY="development"
pascal@13384 6 SHORT_DESC="Portable plugin standard for audio systems."
pascal@13384 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@13384 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@13384 9 WEB_SITE="http://lv2plug.in/trac/"
pascal@13384 10 WGET_URL="http://lv2plug.in/spec/$TARBALL"
pascal@13384 11
pascal@13384 12 DEPENDS="libsndfile"
pascal@13384 13 BUILD_DEPENDS="pkg-config libsndfile-dev"
pascal@13384 14
pascal@13384 15 # Rules to configure and make the package.
pascal@13384 16 compile_rules()
pascal@13384 17 {
pascal@13384 18 cd $src
pascal@13384 19 ./waf configure --prefix=/usr &&
pascal@13384 20 ./waf build &&
pascal@13384 21 ./waf install --destdir=$DESTDIR
pascal@13384 22 }
pascal@13384 23
pascal@13384 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13384 25 genpkg_rules()
pascal@13384 26 {
pascal@13384 27 cp -a $install/* $fs/
pascal@13384 28 }