void-packages/srcpkgs/aspell-en/template
2017-08-25 15:45:33 +02:00

32 lines
966 B
Bash

# Template file for 'aspell-en'
pkgname=aspell-en
version=2017.08.24
revision=1
noarch=yes
wrksrc="aspell6-en-${version}-0"
build_style=configure
hostmakedepends="aspell-devel"
short_desc="English dictionary for aspell"
homepage="http://aspell.net/"
license="LGPL-2.1"
maintainer="Leah Neukirchen <leah@vuxu.org>"
distfiles="${GNU_SITE}/aspell/dict/en/aspell6-en-${version}-0.tar.bz2"
checksum=09b562b02195e7facd31d65241050be7ac6f78654128ab41650511bf42dd5b7c
words-en_package() {
short_desc="English dictionary word list"
noarch=yes
pkg_install() {
vmkdir usr/share/dict
precat en-common.cwl en_US-wo_accents-only.cwl |
iconv -f ISO-8859-1 -t UTF-8 |
cut -d/ -f1 |
sort -u >${PKGDESTDIR}/usr/share/dict/american-english
precat en-common.cwl en_GB-ise-wo_accents-only.cwl |
iconv -f ISO-8859-1 -t UTF-8 |
cut -d/ -f1 |
sort -u >${PKGDESTDIR}/usr/share/dict/british-english
ln -s american-english ${PKGDESTDIR}/usr/share/dict/words
}
}