wok view liblrdf/receipt @ rev 9909

liblrdf: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 17 15:26:23 2011 +0200 (2011-05-17)
parents f25ae3ab4735
children c614eb046326
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"
13 BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev"
15 # Rules to configure and make the package.
17 compile_rules() {
18 ./configure && 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 }