wok view raptor/receipt @ rev 9473

up:?tazwok 4.2.10
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Apr 04 03:17:26 2011 +0200 (2011-04-04)
parents 2c125e3436ba
children 7f4ee0588d9b
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 BUILD_DEPENDS=" libxml2-dev curl-dev zlib-dev openssl-dev libxslt-dev "
9 WEB_SITE="http://librdf.org/raptor"
10 DEPENDS="libxml2 curl zlib openssl libxslt"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://librdf.org/dist/source/$TARBALL"
14 # Rules to configure and make the package.
16 compile_rules() {
17 cd $src
18 ./configure --disable-static &&
19 make &&
20 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 }