blob: e42b7e183ba562678f3b9bac15370f072a01e792 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Contributor: Matthew T Hoare <matthew.t.hoare@gmail.com>
# Maintainer: Matthew T Hoare <matthew.t.hoare@gmail.com>
pkgname=nwg-launchers
pkgver=0.4.0
pkgrel=0
pkgdesc="GTK+ launchers for sway, i3 and some other window managers"
url="https://github.com/nwg-piotr/nwg-launchers"
arch="all"
license="GPL-3.0-or-later"
makedepends="cmake gtkmm3-dev meson nlohmann-json"
options="!check" # no checks
source="$pkgname-$pkgver.tar.gz::https://github.com/nwg-piotr/nwg-launchers/archive/v$pkgver.tar.gz"
build() {
abuild-meson . output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="0b6613d925bb470eda81ccd317a88d5c588e38857a254edea89e90430337e2b016560f535b1882368ffb888452f63930d3b1726b6e9559690c1ac08323615ec9 nwg-launchers-0.4.0.tar.gz"
|