wok view sord/receipt @ rev 15815

Up: uget to 1.10.4.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Jan 24 03:18:28 2014 +0000 (2014-01-24)
parents 9add88f5b1ad
children a37b5a26fc0d
line source
1 # SliTaz package receipt.
3 PACKAGE="sord"
4 VERSION="0.8.0"
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://drobilla.net/software/sord/"
11 WGET_URL="http://download.drobilla.net/$TARBALL"
13 DEPENDS="serd pcre"
14 BUILD_DEPENDS="pkg-config serd-dev pcre"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
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
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/lib* $fs/usr/lib
31 }