summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c7f85b5d15371b23d63c7f111cc3c4a8cc24f3c1 (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
# Maintainer: Eric Engestrom <aur [at] engestrom [dot] ch>
# Maintainer: Kenny Levinsen <aur [at] kl [dot] wtf>

pkgname=greetd-gtkgreet
pkgver=0.7
pkgrel=1
pkgdesc="GTK based greeter for greetd"
arch=(any)
url="https://git.sr.ht/~kennylevinsen/gtkgreet"
license=(GPL3)
source=("https://git.sr.ht/~kennylevinsen/gtkgreet/archive/$pkgver.tar.gz")
sha256sums=('eb4ba0e1e4f9cf888ce7b932b923f97521c2277032628cfc06bb86fecbad9373')
makedepends=(meson ninja scdoc)
depends=(gtk3 gtk-layer-shell json-c)

build() {
  mkdir -p build
  arch-meson gtkgreet-$pkgver build -D layershell=enabled
  ninja -C build
}

package() {
  DESTDIR="$pkgdir" ninja -C build install
}