summaryrefslogtreecommitdiff
path: root/extra/rasqal
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-12-31 03:27:12 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-12-31 03:27:12 +0000
commit5a81550adad5ccde4ad6924cfee2b2ef96d02c98 (patch)
tree5baa7121fc2147a5e1aae552ff6a715922e35aaa /extra/rasqal
parent53db844f5c8c3d0a6752bb40f65c613020084541 (diff)
Tue Dec 31 03:24:15 UTC 2013
Diffstat (limited to 'extra/rasqal')
-rw-r--r--extra/rasqal/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/extra/rasqal/PKGBUILD b/extra/rasqal/PKGBUILD
new file mode 100644
index 000000000..d8dcb978f
--- /dev/null
+++ b/extra/rasqal/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 202985 2013-12-30 08:44:05Z foutrelis $
+# Maintainer: Tom Gundersen <teg@jklm.no>
+# Contributor: AndyRTR <andyrtr@archlinux.org>
+# Contributor: Lawrence Lee <valheru@facticius.net>
+
+pkgname=rasqal
+epoch=1
+pkgver=0.9.30
+pkgrel=3
+pkgdesc="A free C library that handles Resource Description Framework (RDF) query syntaxes, query construction and query execution returning result bindings"
+url="http://librdf.org/rasqal"
+license=('GPL' 'LGPL')
+arch=('i686' 'x86_64')
+depends=('raptor' 'mpfr' 'util-linux')
+source=(http://download.librdf.org/source/${pkgname}-${pkgver}.tar.gz)
+md5sums=('b12c5f9cfdb6b04efce5a4a186b8416b')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ ./configure --prefix=/usr \
+ --disable-static \
+ --enable-release
+ make
+}
+
+check() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make -k check || true # still fails some checks
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir} install
+}