gtk-layer-shell: initial commit, version 0.6.0

This commit is contained in:
Tim Biermann 2021-09-25 18:34:41 +02:00
parent 58a2903448
commit a60fa24d5e
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 41 additions and 0 deletions

View File

@ -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

View File

@ -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

21
gtk-layer-shell/Pkgfile Normal file
View File

@ -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
}