summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5e994c0304f14ac938966c377575f9f8bc5a1444 (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
# Maintainer: Pellegrino Prevete <cGVsbGVncmlub3ByZXZldGVAZ21haWwuY29tCg== | base -d>

_pkgname=emeus
_commit=5d38cc3
pkgname=$_pkgname
pkgver=1.0+$_commit
pkgrel=1
pkgdesc="Constraint-based layout manager for GTK+"
url="https://ebassi.github.io/emeus"
arch=(any)
license=(GPL)
depends=(gtk3)
makedepends=(meson)
groups=(gnome)
source=("git+https://github.com/ebassi/emeus#commit=${_commit}")
sha256sums=('SKIP')

build() {
  arch-meson $_pkgname build
  ninja -C build
}

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