summaryrefslogtreecommitdiff
path: root/repo/x11
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-18 09:54:26 +0100
committerdavidovski <david@davidovski.xyz>2022-05-18 09:54:26 +0100
commitda500224f138f6d4800d248c24228987a0a149de (patch)
tree5671402171908b5b8c54982d9e553cea83fa8178 /repo/x11
parente3327c3fee233a042db91270c18ef1d7f217dc89 (diff)
added c++ bindings for glib, cairo, pango, gtk3 and atk
addded pavucontrol
Diffstat (limited to 'repo/x11')
-rw-r--r--repo/x11/cairomm/cairomm.xibuild21
-rw-r--r--repo/x11/gtkmm3/gtkmm3.xibuild22
-rw-r--r--repo/x11/pangomm/pangomm.xibuild22
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
+}