mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-19 08:42:16 +00:00
593a6a73b7
[no ci]
24 lines
1.1 KiB
Bash
24 lines
1.1 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://hunspell.github.io
|
|
TERMUX_PKG_DESCRIPTION="French dictionary for hunspell"
|
|
TERMUX_PKG_LICENSE="LGPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=20221031
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
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/fr_FR/fr.aff
|
|
# https://cgit.freedesktop.org/libreoffice/dictionaries/log/fr_FR/fr.dic
|
|
# In which case we need to bump version and checksum used.
|
|
termux_download https://cgit.freedesktop.org/libreoffice/dictionaries/plain/fr_FR/fr.aff \
|
|
$TERMUX_PREFIX/share/hunspell/fr_FR.aff \
|
|
4730775ff4488c4a9aa4833393c8b2187126336eed766866300a58a75fe874f0
|
|
termux_download https://cgit.freedesktop.org/libreoffice/dictionaries/plain/fr_FR/fr.dic \
|
|
$TERMUX_PREFIX/share/hunspell/fr_FR.dic \
|
|
b99447ab2e655c1e4b64509cfd2e6c24821242bff1f971b49eac723e388a2d19
|
|
touch $TERMUX_PREFIX/share/hunspell/fr_FR.{aff,dic}
|
|
}
|