wok view raptor/receipt @ rev 10857

Up: slitaz-boot-scripts (4.5) - Bug fixes and ready for RC
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jun 14 21:15:16 2011 +0200 (2011-06-14)
parents b137ba93894d
children c3d5ab7d3a74
line source
1 # SliTaz package receipt.
3 PACKAGE="raptor"
4 VERSION="1.4.21"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A C library that parses RDF/XML/N-Triples into RDF triples"
8 WEB_SITE="http://librdf.org/raptor"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://librdf.org/dist/source/$TARBALL"
12 DEPENDS="libxml2 curl zlib openssl libxslt"
13 BUILD_DEPENDS="libxml2-dev curl-dev zlib-dev openssl-dev libxslt-dev"
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 ./configure --disable-static $CONFIGURE_ARGS &&
20 make && make prefix=/usr install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
29 }