2017-03-24 01:17:39 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://hunspell.github.io
|
|
|
|
TERMUX_PKG_DESCRIPTION="Russian dictionary for hunspell"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="LGPL-3.0"
|
2020-12-20 14:16:34 +01:00
|
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
2021-09-08 15:57:57 +02:00
|
|
|
TERMUX_PKG_VERSION=20210731
|
2019-08-14 13:27:16 +02:00
|
|
|
TERMUX_PKG_SKIP_SRC_EXTRACT=true
|
2019-08-12 17:28:41 +02:00
|
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=true
|
2017-03-24 01:17:39 +01:00
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_make_install() {
|
2017-03-24 01:17:39 +01:00
|
|
|
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 \
|
2020-07-08 13:54:50 +02:00
|
|
|
38ce7d4af78e211e9bafe4bf7e3d6a2c420591136cb738ec6648f8fdf6524cd7
|
2017-03-24 01:17:39 +01:00
|
|
|
termux_download https://cgit.freedesktop.org/libreoffice/dictionaries/plain/ru_RU/ru_RU.dic \
|
|
|
|
$TERMUX_PREFIX/share/hunspell/ru_RU.dic \
|
2021-09-08 15:57:57 +02:00
|
|
|
f6047416a0204adbecf3a451b874ec8a97ee37e2cbc714466ef04d8dbcc0d6fc
|
2017-03-24 01:17:39 +01:00
|
|
|
touch $TERMUX_PREFIX/share/hunspell/ru_RU.{aff,dic}
|
|
|
|
}
|