blob: fc5d11eb547e5cce8fff94fdeead31c2cad72de9 (
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
|
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=gspell
pkgver=1.8.2
pkgrel=0
pkgdesc="Flexible API to add spell checking to a GTK+ application"
url="https://wiki.gnome.org/Projects/gspell"
arch="all"
license="LGPL-2.1-or-later"
depends="iso-codes"
makedepends="glib-dev vala iso-codes-dev gtk+3.0-dev enchant2-dev
gobject-introspection-dev"
checkdepends="xvfb-run hunspell-en ibus"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="https://download.gnome.org/sources/gspell/${pkgver%.*}/gspell-$pkgver.tar.xz"
case "$CARCH" in
s390x)
options="!check" # Requires ibus which is s390x-only
;;
esac
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var
make
}
check() {
xvfb-run make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="220bdec2b8229e848960e5e31bda1209dedac232637d3e6d4931ca2552054fbdf3f576d52f3d5a7ac734e6e626f2fcc7cefd0bff906b29ba9930cef791906c32 gspell-1.8.2.tar.xz"
|