mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:57:56 +08:00
ef9fb546a8
de en-gb en-us es fr hu it kk sk th tr
24 lines
704 B
Bash
24 lines
704 B
Bash
# Contributor: David Sotelo <dvsotelo at gmail com>
|
|
|
|
pkgname=hunspell-es-es
|
|
pkgver=0.1
|
|
pkgrel=1
|
|
pkgdesc="Spanish (Spain) dictionary for Hunspell"
|
|
arch=('i686' 'x86_64')
|
|
url="http://hunspell.sourceforge.net/"
|
|
license=('LGPL')
|
|
depends=('hunspell')
|
|
source=(http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/es_ES.zip
|
|
fix-affix-rules.diff)
|
|
md5sums=('4b272f7c958dd619b2ddc007c45db53b'
|
|
'cf9728ff1fb280025d61e7b83442a8e0')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
|
|
patch -p1 -i ${srcdir}/fix-affix-rules.diff || return 1
|
|
|
|
install -D -m644 es_ES.dic ${pkgdir}/usr/share/myspell/es_ES.dic || return 1
|
|
install -D -m644 es_ES.aff ${pkgdir}/usr/share/myspell/es_ES.aff || return 1
|
|
}
|