wok view sord/receipt @ rev 20167

Up smtube, smplayer (18.1.0)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Thu Jan 11 13:05:26 2018 +0100 (2018-01-11)
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 }