wok view raptor/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents f9582ed2e6bd
children 2f230197370e
line source
1 # SliTaz package receipt.
3 PACKAGE="raptor"
4 VERSION="2.0.15"
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 SOURCE="raptor2"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="http://librdf.org/dist/source/$TARBALL"
15 DEPENDS="curl libxml2 libxslt openssl zlib"
16 BUILD_DEPENDS="curl-dev libidn-dev libxml2-dev libxslt-dev openssl-dev zlib-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --disable-static \
23 --with-yajl=no \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install prefix=/usr
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 mkdir -p $fs/usr/bin
35 cp -a $install/usr/bin/rapper $fs/usr/bin
36 cp -a $install/usr/lib/*so* $fs/usr/lib/
37 }