From a60fa24d5e67b083d465725f169fdb550ec47f10 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sat, 25 Sep 2021 18:34:41 +0200 Subject: [PATCH] gtk-layer-shell: initial commit, version 0.6.0 --- gtk-layer-shell/.footprint | 15 +++++++++++++++ gtk-layer-shell/.signature | 5 +++++ gtk-layer-shell/Pkgfile | 21 +++++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 gtk-layer-shell/.footprint create mode 100644 gtk-layer-shell/.signature create mode 100644 gtk-layer-shell/Pkgfile diff --git a/gtk-layer-shell/.footprint b/gtk-layer-shell/.footprint new file mode 100644 index 000000000..3a458f22b --- /dev/null +++ b/gtk-layer-shell/.footprint @@ -0,0 +1,15 @@ +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/ +drwxr-xr-x root/root usr/lib/girepository-1.0/ +-rw-r--r-- root/root usr/lib/girepository-1.0/GtkLayerShell-0.1.typelib +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.6.0 +-rwxr-xr-x root/root usr/lib/libgtk-layer-shell.so.0.6.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/gtk-layer-shell-0.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/gir-1.0/ +-rw-r--r-- root/root usr/share/gir-1.0/GtkLayerShell-0.1.gir diff --git a/gtk-layer-shell/.signature b/gtk-layer-shell/.signature new file mode 100644 index 000000000..42d686db7 --- /dev/null +++ b/gtk-layer-shell/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF30jsNbpGze/gKA/OdYbs7OvYFl3NaFJIg4yT2vvGNEy9SzICQhQyKevSCxFmFaPbms7xF/56qo5DylMNi5fK3gE= +SHA256 (Pkgfile) = c5faa16450e11310a245909481c468ac70faa7441c3b7e18aa9d510f9e47f42f +SHA256 (.footprint) = a34d15d25e33c377baf1b7857d67d85c931a8958c01b693e75510816fc655486 +SHA256 (gtk-layer-shell-0.6.0.tar.gz) = 9a0ba72cea90e092d6b10ba47e627cd873271d287d9af80a6f66ab131fb34cac diff --git a/gtk-layer-shell/Pkgfile b/gtk-layer-shell/Pkgfile new file mode 100644 index 000000000..49b517c55 --- /dev/null +++ b/gtk-layer-shell/Pkgfile @@ -0,0 +1,21 @@ +# Description: Library to create Wayland desktop components using the Layer Shell protocol +# URL: https://github.com/wmww/gtk-layer-shell +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: gtk3 wayland-protocols + +name=gtk-layer-shell +version=0.6.0 +release=1 +source=(https://github.com/wmww/gtk-layer-shell/archive/v$version/$name-$version.tar.gz) + +build() { + meson setup $name-$version build \ + --prefix=/usr \ + --buildtype=plain \ + --wrap-mode nodownload \ + --auto-features disabled \ + -D b_lto=true \ + -D b_pie=true + meson compile -C build + DESTDIR=$PKG meson install -C build +}