mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 01:57:40 +08:00
ef9fb546a8
de en-gb en-us es fr hu it kk sk th tr
23 lines
677 B
Bash
23 lines
677 B
Bash
# 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
|
|
}
|