wok view liblrdf/receipt @ rev 13675

Added gst-python dependency to radiotray
author Brenton Scott <admin@trixarian.net>
date Mon Nov 26 16:16:06 2012 +0200 (2012-11-26)
parents 2d16b4492336
children 4904e3d374a9
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 \
14 autoconf automake libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 patch -Np1 -i $stuff/md5.patch
21 patch -Np0 -i $stuff/raptor2.diff
22 patch -Np1 -i $stuff/pkgconfig-raptor.patch
23 autoreconf -vfi
24 ./configure $CONFIGURE_ARGS && make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share
31 cp -a $install/usr/lib/*so* $fs/usr/lib/
32 cp -a $install/usr/share/ladspa $fs/usr/share
33 }