summaryrefslogtreecommitdiffstats
path: root/main/aspell/APKBUILD
blob: 767ab1b142f24ce5fe64f7891c4bdef01c2c9dbd (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=aspell
pkgver=0.60.6
_pkgmajorver=${pkgver%.*}
pkgrel=3
pkgdesc="A spell checker designed to eventually replace Ispell"
url="http://aspell.net/"
license="LGPL"
subpackages="$pkgname-dev $pkgname-doc"
depends=
makedepends="ncurses-dev perl"
install=
source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz
	libmath.patch"

build() { 
	cd "$srcdir"/$pkgname-$pkgver
	./configure --prefix=/usr || return 1

	# we want add -lm to linker flag for libaspell so wil build that
	# separately. this is just an ugly workaround
	make libaspell.la LDFLAGS="$LDFLAGS -lm" || return 1
	make || return 1
}

package() {
	cd "$srcdir"/$pkgname-$pkgver
	make DESTDIR="$pkgdir" install || return 1
	ln -s $pkgname-${_pkgmajorver} "$pkgdir"/usr/lib/$pkgname || return 1
}
md5sums="bc80f0198773d5c05086522be67334eb  aspell-0.60.6.tar.gz
715f4e138ab33b27201d90cbc98b4fb3  libmath.patch"