mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
38 lines
983 B
Bash
38 lines
983 B
Bash
#maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=hunspell-pl
|
|
pkgver=20160208
|
|
pkgrel=1
|
|
pkgdesc="Polish (Poland) dictionary for Hunspell"
|
|
arch=(any)
|
|
url="http://www.sjp.pl/slownik/ort/"
|
|
license=("GPL" "LGPL" "CCPL:cc-by-sa" "MPL")
|
|
optdepends=('hunspell: the spell checking libraries and apps')
|
|
source=(http://sjp.pl/slownik/ort/sjp-myspell-pl-${pkgver}.zip)
|
|
md5sums=('5589e38a9a95cdfc4f405e368b03d708')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
bsdtar -xf pl_PL.zip
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"
|
|
|
|
install -dm755 ${pkgdir}/usr/share/hunspell
|
|
install -m644 pl_PL.aff ${pkgdir}/usr/share/hunspell
|
|
install -m644 pl_PL.dic ${pkgdir}/usr/share/hunspell
|
|
|
|
# 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 -dm755 ${pkgdir}/usr/share/doc/$pkgname
|
|
install -m644 README_pl_PL.txt $pkgdir/usr/share/doc/$pkgname
|
|
}
|