wok-next diff serd/receipt @ rev 20400
fuse -> fuse2; add fuse3, fuse-common; add libunibreak
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sun Dec 03 23:31:08 2017 +0200 (2017-12-03) |
parents | 3b4e4318134e |
children | 6e0553fe45e7 |
line diff
1.1 --- a/serd/receipt Tue Dec 03 18:28:51 2013 +0000 1.2 +++ b/serd/receipt Sun Dec 03 23:31:08 2017 +0200 1.3 @@ -1,31 +1,28 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="serd" 1.8 VERSION="0.18.0" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples." 1.11 +SHORT_DESC="A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples" 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="ISC" 1.14 +WEB_SITE="http://drobilla.net/software/serd/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 -WEB_SITE="http://drobilla.net/software/serd/" 1.18 WGET_URL="http://download.drobilla.net/$TARBALL" 1.19 1.20 -DEPENDS="" 1.21 -BUILD_DEPENDS="" 1.22 +BUILD_DEPENDS="python" 1.23 +SPLIT="serd-dev" 1.24 1.25 -# Rules to configure and make the package. 1.26 -compile_rules() 1.27 -{ 1.28 - cd $src 1.29 +compile_rules() { 1.30 ./waf configure --prefix=/usr && 1.31 ./waf build && 1.32 ./waf install --destdir=$DESTDIR 1.33 } 1.34 1.35 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.36 -genpkg_rules() 1.37 -{ 1.38 - mkdir -p $fs/usr/lib 1.39 - cp -a $install/usr/bin $fs/usr 1.40 - cp -a $install/usr/lib/lib* $fs/usr/lib 1.41 +genpkg_rules() { 1.42 + case $PACKAGE in 1.43 + serd) copy @std;; 1.44 + *-dev) copy @dev;; 1.45 + esac 1.46 }