wok view raptor/receipt @ rev 15353

mp: remove TRY_DRIVERS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 30 17:09:51 2013 +0000 (2013-09-30)
parents 61cb21c88190
children f9582ed2e6bd
line source
1 # SliTaz package receipt.
3 PACKAGE="raptor"
4 VERSION="2.0.8"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="A C library that parses RDF/XML/N-Triples into RDF triples"
9 WEB_SITE="http://librdf.org/raptor"
10 SOURCE="raptor2"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="http://librdf.org/dist/source/$TARBALL"
14 DEPENDS="libxml2 curl zlib openssl libxslt"
15 BUILD_DEPENDS="libxml2-dev curl-dev zlib-dev openssl-dev libxslt-dev libidn-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --disable-static --with-yajl=no $CONFIGURE_ARGS &&
22 make && make prefix=/usr install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/bin
29 cp -a $install/usr/bin/rapper $fs/usr/bin
30 cp -a $install/usr/lib/*so* $fs/usr/lib/
31 }