summaryrefslogtreecommitdiff
path: root/repo/cairomm/cairomm.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/cairomm/cairomm.xibuild')
-rw-r--r--repo/cairomm/cairomm.xibuild21
1 files changed, 21 insertions, 0 deletions
diff --git a/repo/cairomm/cairomm.xibuild b/repo/cairomm/cairomm.xibuild
new file mode 100644
index 0000000..3d98220
--- /dev/null
+++ b/repo/cairomm/cairomm.xibuild
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+NAME="cairomm"
+DESC="C++ bindings to Cairo vector graphics library"
+
+MAKEDEPS="meson ninja "
+DEPS="cairo libsigc++ "
+
+PKG_VER=1.14.3
+SOURCE="https://www.cairographics.org/releases/cairomm-$PKG_VER.tar.xz"
+
+build () {
+ cd build &&
+ meson --prefix=/usr \
+ .. &&
+ ninja
+}
+
+package () {
+ DESTDIR=$PKG_DEST ninja install
+}