blob: c0ac631d9fafd86fec41f1add0fe4f3dde43e495 (
plain)
1 # Description: xdotool type for Wayland
2 # URL: https://github.com/atx/wtype/blob/master/meson.build
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: libxkbcommon wayland
5
6 name=wtype
7 version=0.4
8 release=1
9 source=(https://github.com/atx/${name}/archive/refs/tags/v${version}.tar.gz)
10
11 build() {
12 cd ${name}-${version}
13 meson build --prefix=/usr
14 ninja -C build
15 DESTDIR=${PKG} meson install -C build
16 }
|