preload-hacks: Some patches to make it work.
[termux-packages] / packages / hunspell-en-us / build.sh
index 3017ad5..e2246e7 100644 (file)
@@ -1,14 +1,19 @@
-TERMUX_PKG_HOMEPAGE=http://sourceforge.net/projects/hunspell/files/Spelling%20dictionaries/en_US/
+TERMUX_PKG_HOMEPAGE=https://hunspell.github.io
 TERMUX_PKG_DESCRIPTION="American english dictionary for hunspell"
-TERMUX_PKG_VERSION=1.1
-TERMUX_PKG_BUILD_REVISION=1
-TERMUX_PKG_DEPENDS="hunspell"
+TERMUX_PKG_VERSION=2017.10.27
 TERMUX_PKG_PLATFORM_INDEPENDENT=yes
 
 termux_step_make_install () {
-       curl -L http://downloads.sourceforge.net/project/hunspell/Spelling%20dictionaries/en_US/en_US.zip > en_US.zip
-       unzip en_US.zip
-       rm -Rf $TERMUX_PREFIX/share/hunspell/en_US.{aff,dic}
        mkdir -p $TERMUX_PREFIX/share/hunspell/
-       mv en_US.{aff,dic} $TERMUX_PREFIX/share/hunspell/
+       # On checksum mismatch the files may have been updated:
+       #  https://cgit.freedesktop.org/libreoffice/dictionaries/log/en/en_US.aff
+       #  https://cgit.freedesktop.org/libreoffice/dictionaries/log/en/en_US.dic
+       # In which case we need to bump version and checksum used.
+       termux_download https://cgit.freedesktop.org/libreoffice/dictionaries/plain/en/en_US.aff \
+                       $TERMUX_PREFIX/share/hunspell/en_US.aff \
+                       c7a8c4d08c29d237880844b1623099f59092602f189be38ce3912e457ff38bc1
+       termux_download https://cgit.freedesktop.org/libreoffice/dictionaries/plain/en/en_US.dic \
+                       $TERMUX_PREFIX/share/hunspell/en_US.dic \
+                       fa070979b1c5448bd7ab66eb6acb616d306f92879eb4218bc16ee35d39a608ee
+       touch $TERMUX_PREFIX/share/hunspell/en_US.{aff,dic}
 }