summaryrefslogtreecommitdiffstats
path: root/main/aspell-en/APKBUILD
blob: be1621e2b3484133b0d494faccebe8af9fd82941 (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=aspell-en
pkgver=7.1
pkgrel=1
pkgdesc="English dictionary for aspell"
url="http://aspell.net/"
arch="noarch"
license="custom"
depends="aspell"
makedepends="aspell-dev"
source="ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-$pkgver-0.tar.bz2"

_builddir="$srcdir"/aspell6-en-$pkgver-0
build () {
	cd "$_builddir"
	./configure || return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	install -D -m644 Copyright \
		"$pkgdir"/usr/share/licenses/$pkgname/LICENSE || return 1
}

md5sums="beba5e8f3afd3ed1644653bb685b2dfb  aspell6-en-7.1-0.tar.bz2"