wok-next annotate sord/receipt @ rev 21449

updated slock (1.1 -> 1.4)
author Hans-G?nter Theisgen
date Thu May 07 07:51:56 2020 +0100 (2020-05-07)
parents d5aab818505e
children
rev   line source
al@20341 1 # SliTaz package receipt v2.
pascal@13383 2
pascal@13383 3 PACKAGE="sord"
al@20470 4 VERSION="0.16.0"
pascal@13383 5 CATEGORY="development"
al@20341 6 SHORT_DESC="A lightweight C library for storing RDF data in memory"
pascal@13383 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15593 8 LICENSE="ISC"
al@21041 9 WEB_SITE="http://drobilla.net/software/sord"
al@20341 10
pascal@13383 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@13383 12 WGET_URL="http://download.drobilla.net/$TARBALL"
pascal@13383 13
al@20341 14 BUILD_DEPENDS="python serd-dev pcre-dev"
al@21020 15 SPLIT="$PACKAGE-dev"
pascal@13383 16
al@20341 17 compile_rules() {
pascal@13383 18 ./waf configure --prefix=/usr &&
pascal@13383 19 ./waf build &&
al@21020 20 ./waf install --destdir=$install
pascal@13383 21 }
pascal@13383 22
al@20341 23 genpkg_rules() {
al@20341 24 case $PACKAGE in
al@20341 25 sord)
al@20341 26 copy @std
al@20749 27 DEPENDS="libpcre serd"
al@20341 28 ;;
al@20341 29 *-dev)
al@20341 30 copy @dev
al@20341 31 DEPENDS="sord serd-dev"
al@20341 32 ;;
al@20341 33 esac
pascal@13383 34 }