# HG changeset patch # User Pascal Bellard # Date 1348416972 -7200 # Node ID 2a185226214286cdf274d3760547b9f755e61f75 # Parent c86fbbc54081624a1ea774a9011b4b474ffa9e74 Add sratom & lilv diff -r c86fbbc54081 -r 2a1852262142 lilv/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lilv/receipt Sun Sep 23 18:16:12 2012 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="lilv" +VERSION="0.14.4" +CATEGORY="development" +SHORT_DESC="Make the use of LV2 plugins as simple as possible for applications." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://drobilla.net/software/lilv/" +WGET_URL="http://download.drobilla.net/$TARBALL" + +DEPENDS="serd sord sratom" +BUILD_DEPENDS="pkg-config lv2 serd-dev sord-dev sratom" + +# 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 +} diff -r c86fbbc54081 -r 2a1852262142 sratom/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sratom/receipt Sun Sep 23 18:16:12 2012 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="sratom" +VERSION="0.4.0" +CATEGORY="development" +SHORT_DESC="A library for serialising LV2 atoms to/from RDF, particularly the Turtle syntax." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://drobilla.net/software/sratom/" +WGET_URL="http://download.drobilla.net/$TARBALL" + +DEPENDS="serd sord" +BUILD_DEPENDS="pkg-config lv2 serd-dev sord-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 +}