termux-packages/packages/hunspell-ru/build.sh

21 lines
1013 B
Bash
Raw Normal View History

TERMUX_PKG_HOMEPAGE=https://hunspell.github.io
TERMUX_PKG_DESCRIPTION="Russian dictionary for hunspell"
2019-01-21 12:53:58 +00:00
TERMUX_PKG_LICENSE="LGPL-3.0"
TERMUX_PKG_VERSION=20170303
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
termux_step_make_install() {
mkdir -p $TERMUX_PREFIX/share/hunspell/
# On checksum mismatch the files may have been updated:
# https://cgit.freedesktop.org/libreoffice/dictionaries/log/ru_RU/ru_RU.aff
# https://cgit.freedesktop.org/libreoffice/dictionaries/log/ru_RU/ru_RU.dic
# In which case we need to bump version and checksum used.
termux_download https://cgit.freedesktop.org/libreoffice/dictionaries/plain/ru_RU/ru_RU.aff \
$TERMUX_PREFIX/share/hunspell/ru_RU.aff \
2019-02-12 08:23:21 +00:00
709cf9b41208961226e995a3ab75a2da834aaf4f9707cb87cbb37d4943b6a50d
termux_download https://cgit.freedesktop.org/libreoffice/dictionaries/plain/ru_RU/ru_RU.dic \
$TERMUX_PREFIX/share/hunspell/ru_RU.dic \
2019-02-12 08:23:21 +00:00
c0d81126b0a905ccc6fd891c923b43d39b4ce449da5a333859229354c510168f
touch $TERMUX_PREFIX/share/hunspell/ru_RU.{aff,dic}
}