# SliTaz package receipt. PACKAGE="liblrdf" VERSION="0.4.0" CATEGORY="multimedia" MAINTAINER="jozee@slitaz.org" SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins" WEB_SITE="http://sourceforge.net/projects/lrdf" TARBALL="${PACKAGE}-${VERSION}.tar.gz" WGET_URL="$SF_MIRROR/lrdf/$TARBALL" DEPENDS="raptor ladspa libcurl libxslt" BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev libxslt-dev" # Rules to configure and make the package. compile_rules() { ./configure $CONFIGURE_ARGS && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib $fs/usr/share cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ cp -a $_pkg/usr/share/ladspa $fs/usr/share }