summaryrefslogtreecommitdiff
path: root/repo/rasqal
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-03 13:15:00 +0100
committerdavidovski <david@davidovski.xyz>2022-06-03 13:15:00 +0100
commit2e4eddedb755f0c0f88450b1fc1d8b0830132a71 (patch)
treeedb0ddeb32913bfbfb0a99c3c43e75f3a2f13d8d /repo/rasqal
parent66c326b6d65388e9f1003715ad9675505f01f9d2 (diff)
added ardour
Diffstat (limited to 'repo/rasqal')
-rw-r--r--repo/rasqal/rasqal.xibuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/rasqal/rasqal.xibuild b/repo/rasqal/rasqal.xibuild
new file mode 100644
index 0000000..7326c83
--- /dev/null
+++ b/repo/rasqal/rasqal.xibuild
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+NAME="rasqal"
+DESC="RDF query library"
+
+MAKEDEPS="raptor2"
+
+PKG_VER=0.9.33
+SOURCE="https://download.librdf.org/source/rasqal-$PKG_VER.tar.gz"
+
+build() {
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --localstatedir=/var
+ make
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}
+