summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3e9551bca290747e09697f42189aa761d560da17 (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
# Maintainer: Adam Fontenot <adam.m.fontenot@gmail.com>
# Contributor: Philip Goto <philip.goto@gmail.com>

pkgname=crosswords-puzzle-sets-xword-dl
pkgver=0.4.7
pkgrel=1
pkgdesc='English puzzles from xword-dl for the app Crosswords'
arch=(any)
url='https://gitlab.gnome.org/jrb/puzzle-sets-xword-dl'
license=(GPL3)
depends=(crosswords xword-dl)
makedepends=(meson)
_srcdir="puzzle-sets-xword-dl-${pkgver}"
source=("${url}/-/archive/${pkgver}/${_srcdir}.tar.gz")
sha256sums=('c550b1bd85bcd7d76d78a396a508d3fd6981d0704351fa0dbcaad99454a5e232')

build() {
	arch-meson "${_srcdir}" build
	meson compile -C build
}

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

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