mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 05:47:14 +08:00
19 lines
514 B
Bash
19 lines
514 B
Bash
|
# Contributor: George Giorgidze <giorgidze (at) gmail (dot) com>
|
||
|
|
||
|
pkgname=hunspell-en-gb
|
||
|
pkgver=1.20
|
||
|
pkgrel=1
|
||
|
pkgdesc="English (United Kingdom) dictionary for Hunspell"
|
||
|
arch=('any')
|
||
|
url="http://en-gb.pyxidium.co.uk/"
|
||
|
license=('LGPL')
|
||
|
depends=('hunspell')
|
||
|
source=(http://en-gb.pyxidium.co.uk/dictionary/en_GB.zip)
|
||
|
md5sums=('218909136738f4564b81ecd145ade6ee')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir
|
||
|
install -D -m644 en_GB.dic $pkgdir/usr/share/myspell/en_GB.dic
|
||
|
install -D -m644 en_GB.aff $pkgdir/usr/share/myspell/en_GB.aff
|
||
|
}
|