blob: 5333998f1ac43439768a81da60e48849d4d1cf6d (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Contributor: Antoine Fontaine <antoine.fontaine@epfl.ch>
# Maintainer:
pkgname=aisleriot
pkgver=3.22.24
pkgrel=0
pkgdesc="Solitaire and other card games for GNOME"
url="https://wiki.gnome.org/Apps/Aisleriot"
arch="all !s390x !riscv64" # limited by librsvg -> rust
license="GPL-3.0-or-later"
options="!strip" # guille libraries cannot be stripped
depends="guile"
depends_doc="yelp"
makedepends="
bash
gmp-dev
gtk+3.0-dev
guile-dev
itstool
libcanberra-dev
librsvg-dev
libxml2
libxml2-dev
libxml2-utils
meson
"
subpackages="$pkgname-doc $pkgname-lang"
source="https://gitlab.gnome.org/GNOME/aisleriot/-/archive/$pkgver/aisleriot-$pkgver.tar.gz"
build() {
abuild-meson \
-Dtheme_kde=false \
-Dsound=false \
. output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
check() {
meson test --no-rebuild -v -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
db3b88423ea616cbdf9b550c23b4fe2cb93044a01048699992c938c2ab8e4c36ecb443e126124f3ccc0f78f0f8d6ddc4e4c724c63a0ccc84e81fe92ad3adbc45 aisleriot-3.22.24.tar.gz
"
|