blob: 377350f4dd40edb621aba5cd626f8f0dd25bba6c (
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
|
# Contributor: Dmitry Zakharchenko <dmitz@disroot.org>
# Maintainer: Dmitry Zakharchenko <dmitz@disroot.org>
pkgname=wmenu
pkgver=0.1.3
pkgrel=0
pkgdesc="Efficient dynamic menu for Wayland"
url="https://git.sr.ht/~adnano/wmenu"
arch="all"
license="MIT"
makedepends="meson
libxkbcommon-dev
pango-dev
scdoc
wayland-dev
wayland-protocols
"
options="!check" # no test suite
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://git.sr.ht/~adnano/wmenu/archive/$pkgver.tar.gz"
build() {
abuild-meson \
. output
meson compile -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
5de7dfd7e0bddb68c76b06cbeddae42713c8bfadb6b11a5cf7f6d26ad6713c848934ab6f3777dc189483a0f46a808eeb5f0ac6cec5a44e4cd7ba108454392ef6 wmenu-0.1.3.tar.gz
"
|