summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: da7a5f00fb73b24aead17e176c436b8e829e42b9 (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
34
# Maintainer: Pellegrino Prevete <pellegrinoprevete@gmail.com>

_pkgname=amtk
pkgname=$_pkgname-git
pkgver=5.3.1
pkgrel=1
pkgdesc="Actions, Menus and Toolbars Kit for GTK+ applications"
arch=('any')
url="https://wiki.gnome.org/Projects/Amtk"
license=(GPL)
depends=(gtk3)
makedepends=(autoconf-archive git gobject-introspection gtk-doc)
source=("git+https://gitlab.gnome.org/GNOME/$_pkgname")
conflicts=("amtk")
provides=("amtk")
sha512sums=('SKIP')

pkgver() {
  cd $_pkgname
  git describe --tags | sed 's/-/+/g'
}

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

check() {
  meson test -C build
}

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