wok view sord/receipt @ rev 22040

updated tokyocabinet and tokyocabinet-dev (1.4.32 -> 1.4.48)
author Hans-G?nter Theisgen
date Mon Oct 21 17:24:12 2019 +0100 (2019-10-21)
parents 3b4e4318134e
children f35073d3864a
line source
1 # SliTaz package receipt.
3 PACKAGE="sord"
4 VERSION="0.16.2"
5 CATEGORY="development"
6 SHORT_DESC="A lightweight C library for storing RDF data in memory."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="ISC"
9 WEB_SITE="http://drobilla.net/software/sord/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.drobilla.net/$TARBALL"
14 DEPENDS="pcre serd"
15 BUILD_DEPENDS="pcre pkg-config serd-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./waf configure --prefix=/usr &&
21 ./waf build &&
22 ./waf install --destdir=$DESTDIR
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/lib* $fs/usr/lib
32 }