wok-next diff rasqal/receipt @ rev 20715

Up nsd (4.1.21)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 13:10:46 2018 +0300 (2018-05-27)
parents
children 342b30daff76
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rasqal/receipt	Sun May 27 13:10:46 2018 +0300
     1.3 @@ -0,0 +1,40 @@
     1.4 +# SliTaz package receipt v2.
     1.5 +
     1.6 +PACKAGE="rasqal"
     1.7 +VERSION="0.9.33"
     1.8 +CATEGORY="libs"
     1.9 +SHORT_DESC="Handle RDF (Resource Description Framework) queries"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +LICENSE="GPL2 LGPL2.1"
    1.12 +WEB_SITE="http://librdf.org/rasqal/"
    1.13 +LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/rasqal.html"
    1.14 +
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 +WGET_URL="http://download.librdf.org/source/$TARBALL"
    1.17 +
    1.18 +BUILD_DEPENDS="raptor-dev pcre-dev mhash-dev util-linux-uuid-dev gmp-dev \
    1.19 +mpfr-dev"
    1.20 +SPLIT="rasqal-dev"
    1.21 +
    1.22 +compile_rules() {
    1.23 +	./configure \
    1.24 +		--disable-static \
    1.25 +		$CONFIGURE_ARGS &&
    1.26 +	fix libtool &&
    1.27 +	make &&
    1.28 +	make DESTDIR=$install install
    1.29 +}
    1.30 +
    1.31 +genpkg_rules() {
    1.32 +	case $PACKAGE in
    1.33 +		rasqal)
    1.34 +			copy @std
    1.35 +			DEPENDS="mhash mpfr pcre raptor util-linux-uuid"
    1.36 +			;;
    1.37 +		*-dev)
    1.38 +			copy @dev
    1.39 +			DEPENDS="rasqal mhash-dev mpfr-dev pcre-dev raptor-dev \
    1.40 +			util-linux-uuid-dev"
    1.41 +			;;
    1.42 +	esac
    1.43 +}