wok view serd/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 a1dd9bbc35b6
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="serd"
4 VERSION="0.30.2"
5 CATEGORY="development"
6 SHORT_DESC="A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="ISC"
9 WEB_SITE="https://drobilla.net/software/serd/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.drobilla.net/$TARBALL"
14 DEPENDS="gcc83-lib-base"
15 BUILD_DEPENDS="gcc83"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export CC=gcc-83
21 export CXX=g++-83
23 ./waf configure --prefix=/usr &&
24 ./waf build &&
25 ./waf install --destdir=$DESTDIR
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/lib* $fs/usr/lib
35 }