[arch-commits] Commit in hspell/repos (staging-x86_64 staging-x86_64/PKGBUILD)

Evangelos Foutras foutrelis at archlinux.org
Tue May 19 09:32:23 UTC 2020


    Date: Tuesday, May 19, 2020 @ 09:32:23
  Author: foutrelis
Revision: 386558

archrelease: copy trunk to staging-x86_64

Added:
  hspell/repos/staging-x86_64/
  hspell/repos/staging-x86_64/PKGBUILD
    (from rev 386557, hspell/trunk/PKGBUILD)

----------+
 PKGBUILD |   61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

Copied: hspell/repos/staging-x86_64/PKGBUILD (from rev 386557, hspell/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2020-05-19 09:32:23 UTC (rev 386558)
@@ -0,0 +1,61 @@
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+
+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' '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
+  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
+}



More information about the arch-commits mailing list