# HG changeset patch # User Pascal Bellard # Date 1348349145 -7200 # Node ID 7cc077197fbf1879e7191a159cab9031f16717f4 # Parent 9add88f5b1adb23f9aa8851be51eaae9dcebd5d2 Add lv2 diff -r 9add88f5b1ad -r 7cc077197fbf lv2/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lv2/receipt Sat Sep 22 23:25:45 2012 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="lv2" +VERSION="1.0.0" +CATEGORY="development" +SHORT_DESC="Portable plugin standard for audio systems." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://lv2plug.in/trac/" +WGET_URL="http://lv2plug.in/spec/$TARBALL" + +DEPENDS="libsndfile" +BUILD_DEPENDS="pkg-config libsndfile-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./waf configure --prefix=/usr && + ./waf build && + ./waf install --destdir=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs/ +}