PKGBUILDs/extra/aspell-en/PKGBUILD

22 lines
588 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# Maintainer: Simo Leone <simo@archlinux.org>
# Contributor: Sarah Hay <sarah@archlinux.org>
pkgname=aspell-en
pkgver=6.0
pkgrel=2
pkgdesc="English dictionary for aspell"
2009-10-19 03:17:58 +00:00
arch=('arm')
2009-10-10 02:23:22 +00:00
url="http://aspell.net/"
license=('custom')
depends=('aspell')
source=(ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-$pkgver-0.tar.bz2)
md5sums=('16449e0a266e1ecc526b2f3cd39d4bc2')
build() {
cd $srcdir/aspell6-en-$pkgver-0
./configure || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE || return 1
}