mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 09:55:32 +00:00
Clarifies the confusing builder.inc.sh / build-utils.sh distinction by giving the scripts more appropriate names. Most build scripts should use builder-full.inc.sh; some helper scripts can use builder-basic.inc.sh. Documented in resources/build/README.md. Renames: * resources/build/builder.inc.sh to resources/build/builder-full.inc.sh * resources/build/build-utils.sh to resources/build/builder-basic.inc.sh Other changes: * Moves Android-specific functions out of builder-basic.inc.sh and into android/build.sh. * Renames functions in builder-basic.inc.sh More functions may be moved from builder-basic.inc.sh into utils.inc.sh or other scripts in the future. Fixes: #14065 Build-bot: build all Test-bot: skip
58 lines
2.3 KiB
Bash
Executable file
58 lines
2.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
## START STANDARD BUILD SCRIPT INCLUDE
|
|
# adjust relative paths as necessary
|
|
THIS_SCRIPT="$(readlink -f "${BASH_SOURCE[0]}")"
|
|
. "$(dirname "$THIS_SCRIPT")/../../../resources/build/builder-full.inc.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
. "$KEYMAN_ROOT/resources/build/minimum-versions.inc.sh"
|
|
|
|
################################ Main script ################################
|
|
|
|
builder_describe \
|
|
"Downloads Unicode data files, version $KEYMAN_VERSION_UNICODE (see minimum-versions.inc.sh), to be committed to repo." \
|
|
download+
|
|
|
|
builder_describe_outputs \
|
|
download /resources/standards-data/unicode-character-database/UnicodeData.txt
|
|
|
|
builder_parse "$@"
|
|
|
|
# Used by Developer
|
|
BLOCKS_SRC_HREF="https://www.unicode.org/Public/$KEYMAN_VERSION_UNICODE/ucd/Blocks.txt"
|
|
BLOCKS_SRC_LOCAL="./Blocks.txt"
|
|
|
|
UNICODE_DATA_SRC_HREF="https://www.unicode.org/Public/$KEYMAN_VERSION_UNICODE/ucd/UnicodeData.txt"
|
|
UNICODE_DATA_SRC_LOCAL="./UnicodeData.txt"
|
|
|
|
# Used by web/src/engine/predictive-text/wordbreakers for the default Unicode wordbreaker.
|
|
WORDBREAK_PROP_SRC_HREF="https://www.unicode.org/Public/$KEYMAN_VERSION_UNICODE/ucd/auxiliary/WordBreakProperty.txt"
|
|
WORDBREAK_PROP_SRC_LOCAL="./WordBreakProperty.txt"
|
|
|
|
EMOJI_DATA_SRC_HREF="https://www.unicode.org/Public/$KEYMAN_VERSION_UNICODE/ucd/emoji/emoji-data.txt"
|
|
EMOJI_DATA_SRC_LOCAL="./emoji-data.txt"
|
|
|
|
function downloadPropertyFile() {
|
|
local SRC="$1"
|
|
local DEST="$2"
|
|
|
|
local RETRY=5 # Curl retries this number of times before giving up
|
|
local RETRY_DELAY=5 # Make curl sleep this amount of time before each retry when a transfer has failed
|
|
|
|
echo "Downloading ${SRC} - ${RETRY} attempts"
|
|
# local URL_DOWNLOAD_FILE=`curl --retry "$RETRY" --retry-delay "$RETRY_DELAY" --silent "${SRC}" | "$JQ" -r .txt`
|
|
curl --fail --retry "$RETRY" --retry-delay "$RETRY_DELAY" --silent "$SRC" --output "$DEST" || {
|
|
builder_die "Downloading $SRC failed with error $?"
|
|
}
|
|
}
|
|
|
|
do_download() {
|
|
downloadPropertyFile "${BLOCKS_SRC_HREF}" "${BLOCKS_SRC_LOCAL}"
|
|
downloadPropertyFile "${UNICODE_DATA_SRC_HREF}" "${UNICODE_DATA_SRC_LOCAL}"
|
|
|
|
downloadPropertyFile "${WORDBREAK_PROP_SRC_HREF}" "${WORDBREAK_PROP_SRC_LOCAL}"
|
|
downloadPropertyFile "${EMOJI_DATA_SRC_HREF}" "${EMOJI_DATA_SRC_LOCAL}"
|
|
}
|
|
|
|
builder_run_action download do_download
|