summaryrefslogtreecommitdiff
path: root/user/enchant/APKBUILD
blob: a09bd4291e44db5865fa68c76b457303d49b84e5 (plain) (blame)
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
# Maintainer: 
pkgname=enchant
pkgver=1.6.1
pkgrel=2
pkgdesc="A wrapper library for generic spell checking"
url="https://abiword.github.io/enchant/"
arch="all"
license="LGPL-2.0+"
subpackages="$pkgname-dev $pkgname-doc"
depends=""
makedepends="aspell-dev bash dbus-glib-dev file glib-dev hunspell-dev"
checkdepends="aspell-dict-en"
source="https://github.com/AbiWord/enchant/releases/download/enchant-1-6-1/enchant-1.6.1.tar.gz
	hunspell-build-fix.patch"

build() {
	cd "$builddir"
	CC="gcc" OBJC="gcc" ./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--disable-static
	make
}

check() {
	cd "$builddir"/tests
	make check
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

sha512sums="26c62dfa89ee40150db502651a2f876fba00569b7015f205dae27a029557effacff335bbe36124dbe6686537da2305bcab02592179d03e95fdf9741d54b98036  enchant-1.6.1.tar.gz
c0b7fd8fd00a81ea2c08ea7ce2bdffa826b5a3a0c06eacb818681f0f977d8e76c69f7938c10cdf71571cd1cbbf0e576d36fc74a41755fb570e047525195aeb99  hunspell-build-fix.patch"