summaryrefslogtreecommitdiff
path: root/repo/libqxp/libqxp.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/libqxp/libqxp.xibuild')
-rw-r--r--repo/libqxp/libqxp.xibuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/repo/libqxp/libqxp.xibuild b/repo/libqxp/libqxp.xibuild
new file mode 100644
index 0000000..51bb5a0
--- /dev/null
+++ b/repo/libqxp/libqxp.xibuild
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+NAME="libqxp"
+DESC="Library that parses the file format of QuarkXPress documents."
+
+MAKEDEPS="librevenge icu doxygen"
+
+PKG_VER=0.0.2
+SOURCE="https://dev-www.libreoffice.org/src/libqxp/libqxp-$PKG_VER.tar.xz"
+
+build() {
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info
+ make
+}
+
+check() {
+ make check
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}
+