wok view liblrdf/receipt @ rev 6980

Up: seamonkey to 2.0.10.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 28 15:19:36 2010 +0000 (2010-10-28)
parents
children c406bb1d8a76
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 DEPENDS="raptor ladspa"
10 BUILD_DEPENDS="raptor-dev ladspa-dev pkg-config"
11 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
12 WGET_URL="$SF_MIRROR/lrdf/$TARBALL"
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 ./configure --prefix=/usr &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib $fs/usr/share
28 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
29 cp -a $_pkg/usr/share/ladspa $fs/usr/share
31 }