From 3b9b462a88b095775dd584ee567d564eedd0bab2 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sun, 16 Jun 2013 10:31:20 +0200 Subject: [PATCH] New package: rasqal-0.9.30. --- common/shlibs | 1 + srcpkgs/librasqal | 1 + srcpkgs/rasqal-devel | 1 + srcpkgs/rasqal/template | 49 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 52 insertions(+) create mode 120000 srcpkgs/librasqal create mode 120000 srcpkgs/rasqal-devel create mode 100644 srcpkgs/rasqal/template diff --git a/common/shlibs b/common/shlibs index 8d8d0ce9522..9c764e605ea 100644 --- a/common/shlibs +++ b/common/shlibs @@ -1262,3 +1262,4 @@ libsopranoindex.so.1 soprano-2.9.2_1 libsopranoclient.so.1 soprano-2.9.2_1 libsopranoserver.so.1 soprano-2.9.2_1 libsoprano.so.4 soprano-2.9.2_1 +librasqal.so.3 rasqal-0.9.30_1 diff --git a/srcpkgs/librasqal b/srcpkgs/librasqal new file mode 120000 index 00000000000..4cf23db2b17 --- /dev/null +++ b/srcpkgs/librasqal @@ -0,0 +1 @@ +rasqal \ No newline at end of file diff --git a/srcpkgs/rasqal-devel b/srcpkgs/rasqal-devel new file mode 120000 index 00000000000..4cf23db2b17 --- /dev/null +++ b/srcpkgs/rasqal-devel @@ -0,0 +1 @@ +rasqal \ No newline at end of file diff --git a/srcpkgs/rasqal/template b/srcpkgs/rasqal/template new file mode 100644 index 00000000000..c93314900d1 --- /dev/null +++ b/srcpkgs/rasqal/template @@ -0,0 +1,49 @@ +# Template file for 'rasqal' +pkgname=rasqal +version=0.9.30 +revision=1 +build_style=gnu-configure +configure_args="--disable-static --enable-release" +hostmakedepends="pkg-config" +makedepends="mpfr-devel raptor-devel>=2.0.9_3" +short_desc="RDF Query Library" +maintainer="Juan RP " +license="LGPL-2.1" +homepage="http://librdf.org/rasqal" +distfiles="http://librdf.org/dist/source/rasqal-${version}.tar.gz" +checksum=abf0e93d80cc79bdf383fd3e904255bf98bc729356d6cf2f673bce74b08b1cfd +long_desc=" + Rasqal is a free software / Open Source C library that handles Resource + Description Framework (RDF) query language syntaxes, query construction and + execution of queries returning results as bindings, boolean, RDF graphs/triples + or syntaxes. The supported query languages are SPARQL Query 1.0, SPARQL Query + 1.1, SPARQL Update 1.1 (no executing) and the Experimental SPARQL extensions + (LAQRS). Rasqal can write binding query results in the SPARQL XML, SPARQL JSON, + CSV, TSV, HTML, ASCII tables, RDF/XML and Turtle / N3 and read them in SPARQL + XML, RDF/XML and Turtle / N3." + +librasqal_package() { + short_desc+=" - Runtime libraries" + pkg_install() { + vmove "usr/lib/*.so.*" + } +} + +rasqal-devel_package() { + depends="raptor-devel>=2.0.9_3 librasqal-${version}_${revision}" + short_desc+=" - development files" + pkg_install() { + vmove usr/bin/rasqal-config + vmove usr/share/man/man1/rasqal-config.1 + vmove usr/include + vmove usr/lib + vmove usr/share/gtk-doc + vmove usr/share/man/man3 + } +} + +rasqal_package() { + pkg_install() { + vmove usr + } +}