mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:57:13 +08:00
35 lines
957 B
Bash
35 lines
957 B
Bash
# Platform packages for Chakra
|
|
|
|
pkgname=hunspell-hu
|
|
pkgver=1.6.1
|
|
pkgrel=2
|
|
pkgdesc="Hungarian hunspell dictionary"
|
|
arch=('any')
|
|
url="http://extensions.services.openoffice.org/project/hu_dicts"
|
|
license=('LGPL' 'GPL' 'MPL')
|
|
optdepends=('hunspell: the spell checking libraries and apps')
|
|
provides=('hunspell-hu-hu')
|
|
conflicts=('hunspell-hu-hu')
|
|
replaces=('hunspell-hu-hu')
|
|
source=(http://extensions.services.openoffice.org/e-files/1283/9/dict-hu.oxt)
|
|
md5sums=('d320e43e815c2dfd599dbfb7cd0e41fb')
|
|
|
|
|
|
package() {
|
|
cd "$srcdir"
|
|
install -dm755 ${pkgdir}/usr/share/hunspell
|
|
install -m644 -t $pkgdir/usr/share/hunspell hu_HU.dic hu_HU.aff
|
|
|
|
# the symlinks
|
|
install -dm755 ${pkgdir}/usr/share/myspell/dicts
|
|
pushd $pkgdir/usr/share/myspell/dicts
|
|
for file in $pkgdir/usr/share/hunspell/*; do
|
|
ln -sv /usr/share/hunspell/$(basename $file) .
|
|
done
|
|
popd
|
|
|
|
# docs
|
|
install -Dm644 README_hu_HU.txt $pkgdir/usr/share/doc/$pkgname/README_hu_HU.txt
|
|
}
|
|
|