8701462951
Linter will check packages submitted for CI build. If error was found, build will not be allowed. To ensure that all build.sh scripts are consistent and have at least minimal allowed quality, linter is permanently enabled for all branches and pull requests.
22 lines
1.0 KiB
Bash
22 lines
1.0 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://hunspell.github.io
|
|
TERMUX_PKG_DESCRIPTION="Russian dictionary for hunspell"
|
|
TERMUX_PKG_LICENSE="LGPL-3.0"
|
|
TERMUX_PKG_VERSION=20170303
|
|
TERMUX_PKG_SKIP_SRC_EXTRACT=true
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=true
|
|
|
|
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 \
|
|
709cf9b41208961226e995a3ab75a2da834aaf4f9707cb87cbb37d4943b6a50d
|
|
termux_download https://cgit.freedesktop.org/libreoffice/dictionaries/plain/ru_RU/ru_RU.dic \
|
|
$TERMUX_PREFIX/share/hunspell/ru_RU.dic \
|
|
c0d81126b0a905ccc6fd891c923b43d39b4ce449da5a333859229354c510168f
|
|
touch $TERMUX_PREFIX/share/hunspell/ru_RU.{aff,dic}
|
|
}
|