diff options
Diffstat (limited to 'repo/x11')
-rw-r--r-- | repo/x11/cairomm/cairomm.xibuild | 21 | ||||
-rw-r--r-- | repo/x11/gtkmm3/gtkmm3.xibuild | 22 | ||||
-rw-r--r-- | repo/x11/pangomm/pangomm.xibuild | 22 |
3 files changed, 65 insertions, 0 deletions
diff --git a/repo/x11/cairomm/cairomm.xibuild b/repo/x11/cairomm/cairomm.xibuild new file mode 100644 index 0000000..3d98220 --- /dev/null +++ b/repo/x11/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 +} diff --git a/repo/x11/gtkmm3/gtkmm3.xibuild b/repo/x11/gtkmm3/gtkmm3.xibuild new file mode 100644 index 0000000..959d067 --- /dev/null +++ b/repo/x11/gtkmm3/gtkmm3.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +NAME="gtkmm3" +DESC="C++ wrappers for GTK+" + +MAKEDEPS="meson ninja " +DEPS="atkmm cairomm gdk-pixbuf glib glibmm gtk3 libsigc++ musl pangomm " + +PKG_VER=3.24.5 +SOURCE="https://download.gnome.org/sources/gtkmm/${PKG_VER%.*}/gtkmm-$PKG_VER.tar.xz" + +build () { + cd build && + meson --prefix=/usr \ + -Dbuild-demos=false \ + .. && + ninja +} + +package () { + DESTDIR=$PKG_DEST ninja install +} diff --git a/repo/x11/pangomm/pangomm.xibuild b/repo/x11/pangomm/pangomm.xibuild new file mode 100644 index 0000000..05e3a6b --- /dev/null +++ b/repo/x11/pangomm/pangomm.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +NAME="pangomm" +DESC="C++ bindings for pango" + +MAKEDEPS="meson ninja " +DEPS="cairomm glib glibmm libsigc++ musl pango" + +PKG_VER=2.46.2 +SOURCE="https://download.gnome.org/sources/pangomm/${PKG_VER%.*}/pangomm-$PKG_VER.tar.xz" + +build () { + mkdir build && + cd build && + meson --prefix=/usr \ + .. && + ninja +} + +package () { + DESTDIR=$PKG_DEST ninja install +} |