1 # $Id: PKGBUILD 60280 2011-12-08 20:55:43Z jelle $
2 # Contributor: Jelle van der Waa <jelle@vdwaa nl>
3 # Maintainer: Jelle van der Waa <jelle@vdwaa nl>
8 pkgdesc="Dutch hunspell dictionaries"
10 url="http://www.opentaal.org/"
11 license=('BSD' 'custom:Creative Commons, Attribution 3.0 Unported')
13 optdepends=('hunspell: the spell checking libraries and apps')
15 source=(ftp://ftp.archlinux.org/other/community/${pkgname}/nl-dict.oxt)
16 md5sums=('75ef114d14259eaebe425a571e4e1345')
20 install -dm755 "${pkgdir}/usr/share/hunspell"
21 install -m644 nl_NL.dic "${pkgdir}/usr/share/hunspell/nl_NL.dic"
22 install -m644 nl_NL.aff "${pkgdir}/usr/share/hunspell/nl_NL.aff"
24 pushd "${pkgdir}/usr/share/hunspell/"
25 nl_NL_aliases="nl_AW nl_BE"
26 for lang in $nl_NL_aliases; do
27 ln -s nl_NL.aff $lang.aff
28 ln -s nl_NL.dic $lang.dic
33 install -dm755 "${pkgdir}/usr/share/myspell/dicts"
34 pushd "${pkgdir}/usr/share/myspell/dicts"
35 for file in ${pkgdir}/usr/share/hunspell/*; do
36 ln -sv /usr/share/hunspell/$(basename $file) .
41 install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
42 install -m644 README_NL.txt "${pkgdir}/usr/share/doc/${pkgname}"
45 install -D -m644 README_EN.txt $pkgdir/usr/share/licenses/$pkgname/license_en_EN.txt