wok-current rev 25316
updated sord and sord-dev (0.16.4 -> 0.16.12)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jul 21 07:02:36 2022 +0100 (2022-07-21) |
parents | be45df8e287f |
children | db95e4ba6e65 |
files | sord-dev/receipt sord/receipt |
line diff
1.1 --- a/sord-dev/receipt Thu Jul 21 06:45:43 2022 +0100 1.2 +++ b/sord-dev/receipt Thu Jul 21 07:02:36 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="sord-dev" 1.7 -VERSION="0.16.4" 1.8 +VERSION="0.16.12" 1.9 CATEGORY="development" 1.10 SHORT_DESC="A lightweight C library for storing RDF data in memory, development files." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -14,8 +14,6 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/include $fs/usr 1.19 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.20 + cook_copy_folders include 1.21 + cook_copy_folders pkgconfig 1.22 }
2.1 --- a/sord/receipt Thu Jul 21 06:45:43 2022 +0100 2.2 +++ b/sord/receipt Thu Jul 21 07:02:36 2022 +0100 2.3 @@ -1,18 +1,18 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="sord" 2.7 -VERSION="0.16.4" 2.8 +VERSION="0.16.12" 2.9 CATEGORY="development" 2.10 SHORT_DESC="A lightweight C library for storing RDF data in memory." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="ISC" 2.13 WEB_SITE="https://drobilla.net/software/sord.html" 2.14 2.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.16 -WGET_URL="http://download.drobilla.net/$TARBALL" 2.17 +TARBALL="$PACKAGE-$VERSION.tar.xz" 2.18 +WGET_URL="https://download.drobilla.net/$TARBALL" 2.19 2.20 DEPENDS="pcre serd" 2.21 -BUILD_DEPENDS="pcre pkg-config serd-dev" 2.22 +BUILD_DEPENDS="meson pcre pkg-config serd-dev" 2.23 2.24 # What is the latest version available today? 2.25 current_version() 2.26 @@ -24,16 +24,15 @@ 2.27 # Rules to configure and make the package. 2.28 compile_rules() 2.29 { 2.30 - ./waf configure --prefix=/usr && 2.31 - ./waf build && 2.32 - ./waf install --destdir=$DESTDIR 2.33 + meson _build \ 2.34 + --prefix=/usr && 2.35 + ninja -C _build && 2.36 + ninja -C _build install 2.37 } 2.38 2.39 # Rules to gen a SliTaz package suitable for Tazpkg. 2.40 genpkg_rules() 2.41 { 2.42 - mkdir -p $fs/usr/lib 2.43 - 2.44 - cp -a $install/usr/bin $fs/usr 2.45 - cp -a $install/usr/lib/lib* $fs/usr/lib 2.46 + cook_copy_folders bin 2.47 + cook_copy_files *.so* 2.48 }