27 lines
875 B
Plaintext
27 lines
875 B
Plaintext
# 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 libxkbcommon wayland-protocols
|
|
# Optional: vala
|
|
|
|
name=gtk-layer-shell
|
|
version=0.8.2
|
|
release=1
|
|
source=(https://github.com/wmww/gtk-layer-shell/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
ls /usr/include/gtk-3.0/gdk/gdkwayland.h || (printf '\e[1;31m%-6s\e[m\n' "gtk3 is missing wayland libraries, rebuild mesa, then gtk3 to install $name" ; exit 1)
|
|
|
|
prt-get isinst vala || PKGMK_GLS+=' -D vapi=false'
|
|
|
|
meson setup $name-$version build $PKGMK_GLS \
|
|
--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
|
|
}
|