changeset 1174:7fd00429dcae

text/rasqal: initial import, closes #2323
author David Demelier <markand@malikania.fr>
date Thu, 17 Oct 2019 14:08:27 +0200
parents b56931d3ac0d
children 944780161c16
files text/rasqal/rasqal.sh text/rasqal/rasqal.sha1
diffstat 2 files changed, 67 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/text/rasqal/rasqal.sh	Thu Oct 17 14:08:27 2019 +0200
@@ -0,0 +1,66 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=rasqal
+PKGVERSION=0.9.33
+PKGREVISION=1
+PKGLICENSE="GPLv20 LGPLv21"
+PKGSUMMARY="Rasqal RDF Query Library"
+PKGDOWNLOAD="http://download.librdf.org/source/rasqal-0.9.33.tar.gz"
+PKGDEPENDS="bison:build flex:build libgcrypt mpfr raptor util-linux"
+PKGOPTIONS="REGEX"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${REGEX:=yes} # Note: regular expressions support through pcre.
+
+if [ "$REGEX" = "yes" ]; then
+	PKGDEPENDS="pcre $PKGDEPENDS"
+	with_regex="--enable-pcre"
+else
+	with_regex="--disable-pcre"
+fi
+
+build()
+{
+	rm -rf $PKGNAME-$PKGVERSION
+	tar xvf $PKGNAME-$PKGVERSION.tar.gz
+	cd $PKGNAME-$PKGVERSION
+
+	# We don't provide a XML option because raptor requires libxml2 anyway.
+	autoreconf -vif
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--build=$CBUILD \
+		--host=$CHOST \
+		--prefix= \
+		--enable-release \
+		$with_regex
+	make
+	make install DESTDIR=$DESTDIR
+	find $DESTDIR -type f -name "*.la" -delete
+
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/text/rasqal/rasqal.sha1	Thu Oct 17 14:08:27 2019 +0200
@@ -0,0 +1,1 @@
+281c2e0a352c53ef1656bfe778c380226d61726f  rasqal-0.9.33.tar.gz