summaryrefslogtreecommitdiff
path: root/libs/gtk-layer-shell
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /libs/gtk-layer-shell
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/gtk-layer-shell')
-rw-r--r--libs/gtk-layer-shell/.footprint10
-rw-r--r--libs/gtk-layer-shell/.signature6
-rw-r--r--libs/gtk-layer-shell/MAKEPKG37
3 files changed, 53 insertions, 0 deletions
diff --git a/libs/gtk-layer-shell/.footprint b/libs/gtk-layer-shell/.footprint
new file mode 100644
index 0000000..a0062d6
--- /dev/null
+++ b/libs/gtk-layer-shell/.footprint
@@ -0,0 +1,10 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/gtk-layer-shell/
+-rw-r--r-- root/root usr/include/gtk-layer-shell/gtk-layer-shell.h
+drwxr-xr-x root/root usr/lib/
+-rwxr-xr-x root/root usr/lib/libgtk-layer-shell.so.0.10.1
+lrwxrwxrwx root/root usr/lib/libgtk-layer-shell.so -> libgtk-layer-shell.so.0
+lrwxrwxrwx root/root usr/lib/libgtk-layer-shell.so.0 -> libgtk-layer-shell.so.0.10.1
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/gtk-layer-shell-0.pc
diff --git a/libs/gtk-layer-shell/.signature b/libs/gtk-layer-shell/.signature
new file mode 100644
index 0000000..204dc11
--- /dev/null
+++ b/libs/gtk-layer-shell/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mKWV0o4YD9+Cf92jqsLXjq8RG/cmOMqYHTW1cndu5y3A0CZeqL2QfSuvAzEcqzX5sVOLqNVuyGBtxRy5ox3NQAU=
+
+SHA256 (MAKEPKG) = caef5a24a4781eaee4f6d189661ed4a4dfbc1e2a8cccf8450048a66ffa561d0c
+SHA256 (.footprint) = 8401de655102071139b51fa6719a348cd77c2b63e75d8cf37c963d880edf29db
+SHA256 (v0.10.1.tar.gz) = 88c3a3e0a5300532f3d368d5df64838a87f1fb85273f22d41df0a6b8d0ec59c6
+SHA256 (gtk-layer-shell#0.10.1-2.pkg.tar.gz) = eef9f0def3b169d57245075d6813c866288ec41a0c2ac71221af5ca8509b588b
diff --git a/libs/gtk-layer-shell/MAKEPKG b/libs/gtk-layer-shell/MAKEPKG
new file mode 100644
index 0000000..0b74724
--- /dev/null
+++ b/libs/gtk-layer-shell/MAKEPKG
@@ -0,0 +1,37 @@
+#!/bin/mkpkg
+# description: Library to create panels and desktop components for Wayland using Layer Shell
+# url: https://github.com/wmww/gtk-layer-shell
+
+name=gtk-layer-shell
+version=0.10.1
+release=2
+depends=(gtk3 wayland wayland-protocols)
+makedeps=(meson)
+
+source=(https://github.com/wmww/gtk-layer-shell/archive/refs/tags/v$version.tar.gz)
+
+sha256sums=(
+ "88c3a3e0a5300532f3d368d5df64838a87f1fb85273f22d41df0a6b8d0ec59c6"
+)
+
+build() {
+ cd $name-$version
+
+ meson setup build \
+ --prefix=/usr \
+ --buildtype=plain \
+ -D examples=false \
+ -D introspection=false \
+ -D vapi=false \
+ -D docs=false \
+ -D tests=false
+ meson compile -C build
+ DESTDIR=$PKG meson install -C build
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh