wok view liblrdf/receipt @ rev 13126

liblrdf: Add patches to support raptor 2.0.x and clean up.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jul 04 22:13:34 2012 +0000 (2012-07-04)
parents b7319995b37e
children d846aa26e70f
line source
1 # SliTaz package receipt.
3 PACKAGE="liblrdf"
4 VERSION="0.4.0"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins"
8 WEB_SITE="http://sourceforge.net/projects/lrdf"
9 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
10 WGET_URL="$SF_MIRROR/lrdf/$TARBALL"
12 DEPENDS="raptor ladspa libcurl libxslt"
13 BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev libxslt-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 patch -Np1 -i $stuff/md5.patch
20 patch -Np0 -i $stuff/raptor2.diff
21 patch -Np1 -i $stuff/pkgconfig-raptor.patch
22 autoreconf -vfi
23 ./configure $CONFIGURE_ARGS && make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib $fs/usr/share
30 cp -a $install/usr/lib/*so* $fs/usr/lib/
31 cp -a $install/usr/share/ladspa $fs/usr/share
32 }