core/hunspell-en-us/PKGBUILD

23 lines
677 B
Bash
Raw Normal View History

# Contributor: Alexander Fehr <pizzapunk gmail com>
pkgname=hunspell-en-us
pkgver=20070829
pkgrel=1
pkgdesc="English (United States) dictionary for Hunspell"
arch=('i686' 'x86_64')
url="http://hunspell.sourceforge.net/"
license=('LGPL' 'BSD')
depends=('hunspell')
source=(http://downloads.sourceforge.net/hunspell/en_US.zip
license.txt)
md5sums=('485fff38eaa88d8d9cbb836e3d9bd258'
'844e30c3e88b653ecc5e0db4c11bdd04')
build() {
cd $srcdir
install -D -m644 en_US.dic $pkgdir/usr/share/myspell/en_US.dic
install -D -m644 en_US.aff $pkgdir/usr/share/myspell/en_US.aff
install -D -m644 license.txt $pkgdir/usr/share/licenses/hunspell-en-us/license.txt
}