wok-6.x annotate serd/receipt @ rev 24208
updated perl-file-listing (6.04 -> 6.14)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 15:45:38 2021 +0100 (2021-12-31) |
parents | a1dd9bbc35b6 |
children | 934055de50e2 |
rev | line source |
---|---|
pascal@13383 | 1 # SliTaz package receipt. |
pascal@13383 | 2 |
pascal@13383 | 3 PACKAGE="serd" |
Hans-G?nter@23639 | 4 VERSION="0.30.2" |
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 } |