core/hunspell-es-es/PKGBUILD
Drake Justice ef9fb546a8 initial hunspell languages commit
de en-gb en-us es fr hu it kk sk th tr
2010-06-25 03:44:17 +00:00

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
}