blob: 0b74724334cc40745759b6d1e6e2145a28da6dac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
|