blob: 8f36a1392a78bc9ccfd67f8c84db2d137f9dfcda (
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
|
# Maintainer: Alynx Zhou <alynx.zhou@gmail.com>
pkgname=showmethekey
pkgver=1.18.3
pkgrel=1
pkgdesc="A screenkey alternative that works under Wayland via libinput."
arch=("x86_64" "i686" "aarch64" "armv7h" "armv6h")
url="https://showmethekey.alynx.one/"
license=("Apache")
depends=("libevdev" "udev" "libinput" "glib2" "gtk4" "libadwaita" "json-glib" "cairo" "pango" "libxkbcommon" "polkit")
makedepends=("meson" "glib2-devel")
source=("https://github.com/AlynxZhou/${pkgname}/archive/v${pkgver}.tar.gz")
sha512sums=('951140630b53509999ee7ea1cc70534c2f1c9f7e5dfc696c5b3b69c3830a6a2dd2cf0b52f9932ae33bc07a2fe1665e1b4e429f5930440eb63dae422b4bb7d01a')
prepare() {
cd "${pkgname}-${pkgver}"
mkdir -p build
}
build() {
cd "${pkgname}-${pkgver}/build"
arch-meson . ..
meson compile
}
package() {
cd "${pkgname}-${pkgver}/build"
meson install --destdir "${pkgdir}"
}
|