mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
69 lines
1.9 KiB
Bash
69 lines
1.9 KiB
Bash
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - makedepend on qt5-webengine for v7/v8 only
|
|
# - only install webengine dictionaries on v7/v8
|
|
|
|
pkgbase=hspell
|
|
pkgname=('hspell' 'hunspell-he')
|
|
pkgver=1.4
|
|
pkgrel=3
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://www.ivrix.org.il/projects/spell-checker/"
|
|
makedepends=('glibc' 'zlib' 'perl' 'hunspell' 'gawk')
|
|
makedepends_armv7h=('qt5-webengine')
|
|
makedepends_aarch64=('qt5-webengine')
|
|
options=('!makeflags')
|
|
source=(http://hspell.ivrix.org.il/${pkgname}-${pkgver}.tar.gz{,.sig})
|
|
sha256sums=('7310f5d58740d21d6d215c1179658602ef7da97a816bc1497c8764be97aabea3'
|
|
'SKIP')
|
|
validpgpkeys=('996512CD85DC510BD45EAD46415E26D84D4E37DB')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
export PERLLIB="$PWD"
|
|
./configure --prefix=/usr --mandir=/usr/share/man \
|
|
--enable-linginfo --enable-fatverb --enable-shared
|
|
make
|
|
make hunspell
|
|
}
|
|
|
|
package_hspell() {
|
|
|
|
pkgdesc="Hebrew spell-checker"
|
|
depends=('glibc' 'zlib' 'perl')
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
rm -f ${pkgdir}/usr/lib/libhspell.a
|
|
}
|
|
|
|
package_hunspell-he() {
|
|
|
|
pkgdesc="Hebrew hunspell dictionary"
|
|
|
|
cd ${pkgbase}-${pkgver}
|
|
|
|
install -dm755 "$pkgdir"/usr/share/hunspell
|
|
install -m644 he.dic "$pkgdir"/usr/share/hunspell/he_IL.dic
|
|
install -m644 he.aff "$pkgdir"/usr/share/hunspell/he_IL.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
|
|
|
|
# Install webengine dictionaries
|
|
if [[ $CARCH == "armv7h" || $CARCH == "aarch64" ]]; then
|
|
install -d "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/
|
|
for _file in "$pkgdir"/usr/share/hunspell/*.dic; do
|
|
_filename=$(basename $_file)
|
|
qwebengine_convert_dict $_file "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/${_filename/\.dic/\.bdic}
|
|
done
|
|
fi
|
|
}
|