summaryrefslogtreecommitdiff
path: root/repo/glibmm
diff options
context:
space:
mode:
Diffstat (limited to 'repo/glibmm')
-rw-r--r--repo/glibmm/glibmm.xibuild21
1 files changed, 21 insertions, 0 deletions
diff --git a/repo/glibmm/glibmm.xibuild b/repo/glibmm/glibmm.xibuild
new file mode 100644
index 0000000..44f2a71
--- /dev/null
+++ b/repo/glibmm/glibmm.xibuild
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+NAME="glibmm"
+DESC="C++ wrapper for the GLib toolkit"
+
+MAKEDEPS="meson ninja "
+DEPS="glib libgcc libsigc++ musl"
+
+PKG_VER=2.66.2
+SOURCE="https://download.gnome.org/sources/glibmm/${PKG_VER%.*}/glibmm-$PKG_VER.tar.xz"
+
+build () {
+ cd build &&
+ meson --prefix=/usr \
+ .. &&
+ ninja
+}
+
+package () {
+ DESTDIR=$PKG_DEST ninja install
+}