wok rev 21900
updated serd and serd-dev (0.18.0 -> 0.30.0)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Oct 03 20:51:42 2019 +0100 (2019-10-03) |
parents | 8c3a860a2902 |
children | be004d82b0b1 |
files | serd-dev/receipt serd/receipt |
line diff
1.1 --- a/serd-dev/receipt Thu Oct 03 20:41:17 2019 +0100 1.2 +++ b/serd-dev/receipt Thu Oct 03 20:51:42 2019 +0100 1.3 @@ -1,20 +1,21 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="serd-dev" 1.7 -VERSION="0.18.0" 1.8 +VERSION="0.30.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples, development files." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="ISC" 1.13 -WEB_SITE="http://drobilla.net/software/serd/" 1.14 -WANTED="serd" 1.15 +WEB_SITE="https://drobilla.net/software/serd/" 1.16 1.17 DEPENDS="serd pkg-config" 1.18 +WANTED="serd" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 mkdir -p $fs/usr/lib 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.26 + 1.27 + cp -a $install/usr/include $fs/usr 1.28 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.29 }
2.1 --- a/serd/receipt Thu Oct 03 20:41:17 2019 +0100 2.2 +++ b/serd/receipt Thu Oct 03 20:51:42 2019 +0100 2.3 @@ -1,22 +1,25 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="serd" 2.7 -VERSION="0.18.0" 2.8 +VERSION="0.30.0" 2.9 CATEGORY="development" 2.10 SHORT_DESC="A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="ISC" 2.13 +WEB_SITE="https://drobilla.net/software/serd/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.16 -WEB_SITE="http://drobilla.net/software/serd/" 2.17 WGET_URL="http://download.drobilla.net/$TARBALL" 2.18 2.19 -DEPENDS="" 2.20 -BUILD_DEPENDS="" 2.21 +DEPENDS="gcc83-lib-base" 2.22 +BUILD_DEPENDS="gcc83" 2.23 2.24 # Rules to configure and make the package. 2.25 compile_rules() 2.26 { 2.27 - cd $src 2.28 + export CC=gcc-83 2.29 + export CXX=g++-83 2.30 + 2.31 ./waf configure --prefix=/usr && 2.32 ./waf build && 2.33 ./waf install --destdir=$DESTDIR 2.34 @@ -26,6 +29,7 @@ 2.35 genpkg_rules() 2.36 { 2.37 mkdir -p $fs/usr/lib 2.38 - cp -a $install/usr/bin $fs/usr 2.39 - cp -a $install/usr/lib/lib* $fs/usr/lib 2.40 + 2.41 + cp -a $install/usr/bin $fs/usr 2.42 + cp -a $install/usr/lib/lib* $fs/usr/lib 2.43 }