wok view raptor/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents 3b81e35aa0a9
children 408c87fa22ca
line source
1 # SliTaz package receipt.
3 PACKAGE="raptor"
4 VERSION="2.0.8"
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 SOURCE="raptor2"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WGET_URL="http://librdf.org/dist/source/$TARBALL"
13 DEPENDS="libxml2 curl zlib openssl libxslt"
14 BUILD_DEPENDS="libxml2-dev curl-dev zlib-dev openssl-dev libxslt-dev libidn-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --disable-static --with-yajl=no $CONFIGURE_ARGS &&
21 make && make prefix=/usr install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib $fs/usr/bin
28 cp -a $install/usr/bin/rapper $fs/usr/bin
29 cp -a $install/usr/lib/*so* $fs/usr/lib/
30 }