wok annotate serd/receipt @ rev 23341

updated perl-html-tree (4.1 -> 5.07)
author Hans-G?nter Theisgen
date Tue Mar 31 09:01:44 2020 +0100 (2020-03-31)
parents 3b4e4318134e
children 3b146ee1b791
rev   line source
pascal@13383 1 # SliTaz package receipt.
pascal@13383 2
pascal@13383 3 PACKAGE="serd"
Hans-G?nter@21900 4 VERSION="0.30.0"
pascal@13383 5 CATEGORY="development"
pascal@13383 6 SHORT_DESC="A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples."
pascal@13383 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15593 8 LICENSE="ISC"
Hans-G?nter@21900 9 WEB_SITE="https://drobilla.net/software/serd/"
Hans-G?nter@21900 10
pascal@13383 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@13383 12 WGET_URL="http://download.drobilla.net/$TARBALL"
pascal@13383 13
Hans-G?nter@21900 14 DEPENDS="gcc83-lib-base"
Hans-G?nter@21900 15 BUILD_DEPENDS="gcc83"
pascal@13383 16
pascal@13383 17 # Rules to configure and make the package.
pascal@13383 18 compile_rules()
pascal@13383 19 {
Hans-G?nter@21900 20 export CC=gcc-83
Hans-G?nter@21900 21 export CXX=g++-83
Hans-G?nter@21900 22
pascal@13383 23 ./waf configure --prefix=/usr &&
pascal@13383 24 ./waf build &&
pascal@13383 25 ./waf install --destdir=$DESTDIR
pascal@13383 26 }
pascal@13383 27
pascal@13383 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13383 29 genpkg_rules()
pascal@13383 30 {
pascal@13383 31 mkdir -p $fs/usr/lib
Hans-G?nter@21900 32
Hans-G?nter@21900 33 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21900 34 cp -a $install/usr/lib/lib* $fs/usr/lib
pascal@13383 35 }