summaryrefslogtreecommitdiff
path: root/repo/system/glibmm
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-18 23:40:53 +0100
committerdavidovski <david@davidovski.xyz>2022-05-18 23:40:53 +0100
commit3ed93901dda10d71a712922a78a8bd06b3b38da6 (patch)
tree20de8e99d0705934693760e0041a7f8966dce4ea /repo/system/glibmm
parent0b977787374349328a21af0deade30d534cf3978 (diff)
parent4cfc98e1be889f359613a54010b67e13c673e4ab (diff)
Merge branch 'master' of git.cheetah.remote:xilinux/buildfiles
Diffstat (limited to 'repo/system/glibmm')
-rw-r--r--repo/system/glibmm/glibmm.xibuild21
1 files changed, 21 insertions, 0 deletions
diff --git a/repo/system/glibmm/glibmm.xibuild b/repo/system/glibmm/glibmm.xibuild
new file mode 100644
index 0000000..44f2a71
--- /dev/null
+++ b/repo/system/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
+}