termux-packages/packages/hunspell-en-us/build.sh
Leonid Pliushch c352216c63 packages: standardize values of several control variables for build.sh
Variables

 TERMUX_PKG_PLATFORM_INDEPENDENT
 TERMUX_DEBUG
 TERMUX_PKG_HAS_DEBUG
 TERMUX_PKG_ESSENTIAL
 TERMUX_SUBPKG_ESSENTIAL
 TERMUX_PKG_NO_STATICSPLIT
 TERMUX_PKG_BUILD_IN_SRC
 TERMUX_PKG_FORCE_CMAKE
 TERMUX_PKG_HOSTBUILD

should not accept arbitrary values for marking them "enabled". Instead
they should accept boolean values which makes them easier to handle and
also makes their meaning clear.

build-package.sh should make decision based on variable's value but not on
whether it is set or empty.

%ci:no-build
2019-08-12 18:49:13 +03:00

21 lines
1011 B
Bash

TERMUX_PKG_HOMEPAGE=https://hunspell.github.io
TERMUX_PKG_DESCRIPTION="American english dictionary for hunspell"
TERMUX_PKG_LICENSE="LGPL-3.0"
TERMUX_PKG_VERSION=20181025
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/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 \
9eb52cdeab6c87a4988df7d2845caaa39cd9bdc93b45bc2e3c228f8070807767
touch $TERMUX_PREFIX/share/hunspell/en_US.{aff,dic}
}