wok view liblrdf/receipt @ rev 11573

Fix build/host configure option in recipes which was not detecting the right ones well + tiny fixes.
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Jan 02 23:06:18 2012 +0100 (2012-01-02)
parents c614eb046326
children 2d16b4492336
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.
17 compile_rules() {
18 ./configure $CONFIGURE_ARGS && make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib $fs/usr/share
25 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
26 cp -a $_pkg/usr/share/ladspa $fs/usr/share
27 }