summaryrefslogtreecommitdiffstats
path: root/main/hunspell/APKBUILD
blob: c185bc58bd727bce033ebb439f5c3cf627c3bc98 (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: Natanael Copa <ncopa@alpinelinux.org>
pkgname=hunspell
pkgver=1.2.15
pkgrel=1
pkgdesc="Spell checker and morphological analyzer library and program"
url="http://hunspell.sourceforge.net/"
arch="all"
license="GPL LGPL MPL"
subpackages="$pkgname-dev $pkgname-doc"
depends=
makedepends="gettext-dev"
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"

build() {
	cd "$srcdir/hunspell-$pkgver"
	./configure --prefix=/usr \
		--disable-static \
		--without-included-gettext || return 1
	make || return 1
}

package() {
	cd "$srcdir/hunspell-$pkgver"
	make -j1 DESTDIR="$pkgdir" install || return 1
}

md5sums="3fa2644b8d48cae48cb0967ffba91c9d  hunspell-1.2.15.tar.gz"