summaryrefslogtreecommitdiff
path: root/repo/lrdf
diff options
context:
space:
mode:
Diffstat (limited to 'repo/lrdf')
-rw-r--r--repo/lrdf/lrdf.xibuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/repo/lrdf/lrdf.xibuild b/repo/lrdf/lrdf.xibuild
new file mode 100644
index 0000000..1b7d018
--- /dev/null
+++ b/repo/lrdf/lrdf.xibuild
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+NAME="lrdf"
+DESC="RDF library for accessing plugin metadata in the LADSPA plugin system"
+
+MAKEDEPS="autoconf automake libtool raptor2"
+
+PKG_VER=0.6.1
+SOURCE="https://github.com/swh/LRDF/archive/v$PKG_VER.tar.gz"
+
+prepare() {
+ autoreconf -if
+}
+
+build() {
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --localstatedir=/var
+ make
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}
+