blob: 4177b94f35cb28e17dcef8adaf34e2480e040a0d (
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
|
#!/bin/mkpkg
# *** Flux Linux ***
# description: An xrandr clone for wlroots compositors
# url: https://gitlab.freedesktop.org/emersion/wlr-randr
name=wlr-randr
version=0.5.0
release=1
depends=(wayland)
makedeps=(meson)
source=(https://gitlab.freedesktop.org/emersion/wlr-randr/-/archive/v$version/$name-v$version.tar.gz)
sha256sums=(
"c566d94fddb84f801c733f1415a4ad5b75870305346363074cbdf468d4ac263a"
)
build() {
cd $name-v$version
meson setup build \
--prefix=/usr \
--libdir=/usr/lib \
-Dbuildtype=release
meson compile -C build -j$(nproc)
DESTDIR=$PKG meson install -C build --no-rebuild
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|