blob: dba9d2d8a736e7ba3b1d76811602e6660035d52b (
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
|
# Maintainer: afontenot <adam.m.fontenot@gmail.com>
# Contributor: euler23 <jordanpaldino@gmail.com>
pkgname=libipuz
pkgver=0.5.1
pkgrel=2
pkgdesc='Library for parsing .ipuz puzzle files'
arch=(x86_64 aarch64)
url='https://gitlab.gnome.org/jrb/libipuz'
license=(LGPL-2.1-or-later OR MIT)
depends=(json-glib)
makedepends=(glib2-devel gi-docgen gobject-introspection meson rust)
source=("${url}/-/archive/${pkgver}/libipuz-${pkgver}.tar.gz")
sha256sums=('9eae2d361beaa3e3bf2252c5c22ecd9756381c6cf83ca91150f70ee919679df4')
build() {
arch-meson "${pkgname}-${pkgver}" build --buildtype=release
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "${pkgdir}"
}
|