summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 791734edd20f2339ebbdcf747d3b678a64848451 (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
# Maintainer: Igor Dyatlov <dyatlov.igor@protonmail.com>

pkgname=typography
pkgver=0.1.0
pkgrel=1
pkgdesc="Tool for working with the GNOME typography design guidelines"
arch=('any')
url="https://gitlab.gnome.org/World/design/typography"
license=('GPL3')
depends=('gtk4')
makedepends=('git' 'meson')
source=("git+${url}.git#tag=${pkgver}")
md5sums=('SKIP') #autofill using updpkgsums

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

check() {
  meson test -C build --print-errorlogs
}

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