wok-next view raptor/receipt @ rev 20616

xrdp: up 0.9.3.1; zopfli: fix build; gcc61: attempt to fix; add gcc6 (latest among 6.x.x).
gcc61 and gcc6 are broken now.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 21 05:15:11 2018 +0300 (2018-04-21)
parents d43bf7aae921
children 1ff723a6455b
line source
1 # SliTaz package receipt v2.
3 PACKAGE="raptor"
4 VERSION="2.0.8"
5 CATEGORY="multimedia"
6 SHORT_DESC="A C library that parses RDF/XML/N-Triples into RDF triples"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://librdf.org/raptor"
11 TARBALL="raptor2-$VERSION.tar.gz"
12 WGET_URL="http://librdf.org/dist/source/$TARBALL"
14 BUILD_DEPENDS="libxml2-dev curl-dev zlib-dev openssl-dev libxslt-dev libidn-dev"
15 SPLIT="raptor-dev"
17 compile_rules() {
18 ./configure \
19 --disable-static \
20 --with-yajl=no \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make prefix=/usr install || return 1
26 ln -s raptor2/raptor2.h $install/usr/include/raptor.h
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 raptor)
32 copy @std
33 DEPENDS="libxml2 curl zlib openssl libxslt"
34 ;;
35 raptor-dev)
36 copy @dev
37 DEPENDS="raptor curl-dev libxslt-dev"
38 ;;
39 esac
40 }