wok-next view sord/receipt @ rev 20470

Up ardour (5.12.0), cookutils (1035), ffmpeg (3.4.2), fftw, libvpx (1.7.0), lilv (0.24.2), lv2 (1.14.0), serd (0.28.0), sord (0.16.0), sratom (0.6.0); add rubberband, vamp-plugin-sdk.
Just for info: ardour use up to 95% RAM (is 2GB) + up to 40% swap (is 9GB) and utilize CPU up to 90% (mostly I/O wait) while compiling.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Mar 08 23:05:26 2018 +0200 (2018-03-08)
parents 6b6854289368
children 342b30daff76
line source
1 # SliTaz package receipt v2.
3 PACKAGE="sord"
4 VERSION="0.16.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 WEB_SITE="http://drobilla.net/software/sord/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.drobilla.net/$TARBALL"
14 BUILD_DEPENDS="python serd-dev pcre-dev"
15 SPLIT="sord-dev"
17 compile_rules() {
18 ./waf configure --prefix=/usr &&
19 ./waf build &&
20 ./waf install --destdir=$DESTDIR
21 }
23 genpkg_rules() {
24 case $PACKAGE in
25 sord)
26 copy @std
27 DEPENDS="pcre serd"
28 ;;
29 *-dev)
30 copy @dev
31 DEPENDS="sord serd-dev"
32 ;;
33 esac
34 }