summaryrefslogtreecommitdiff
path: root/libs/gtk-layer-shell/MAKEPKG
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/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/gtk-layer-shell/MAKEPKG')
-rw-r--r--libs/gtk-layer-shell/MAKEPKG37
1 files changed, 37 insertions, 0 deletions
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