mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
55 lines
1.5 KiB
Bash
Executable file
55 lines
1.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Checkout a matching version of CEF for the
|
|
# current release of Keyman. This tag is set in
|
|
# /common/windows/CEFVERSION.md
|
|
|
|
# Terminate script if a command returns an error
|
|
set -e
|
|
|
|
# Terminate script if an unset variable is used
|
|
set -u
|
|
|
|
## START STANDARD BUILD SCRIPT INCLUDE
|
|
# adjust relative paths as necessary
|
|
THIS_SCRIPT="$(readlink -f "${BASH_SOURCE[0]}")"
|
|
. "${THIS_SCRIPT%/*}/../../resources/build/build-utils.sh"
|
|
# . "$KEYMAN_ROOT/resources/shellHelperFunctions.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
pushd $KEYMAN_CEF4DELPHI_ROOT > /dev/null
|
|
|
|
CEF_VERSION_MD="$KEYMAN_ROOT/common/windows/CEF_VERSION.md"
|
|
CEF_VERSION=`cat $CEF_VERSION_MD | tr -d "[:space:]"`
|
|
|
|
# Switch to the version of CEF referenced in CEF_VERSION.md
|
|
# Note that 14.0 and earlier versions rely on the `master`
|
|
# branch, so that is the default branch checked out in the
|
|
# build configurations
|
|
|
|
# Warning: this WILL clean the CEF binary repository, so don't
|
|
# do a release build with uncommitted changes on the CEF binary
|
|
# repo!
|
|
git reset --hard
|
|
git clean -fd
|
|
|
|
if [ "${1-}" != "--offline" ]; then
|
|
git fetch origin "v$CEF_VERSION"
|
|
fi
|
|
git switch "v$CEF_VERSION"
|
|
|
|
if [ ! -f ./libcef.dll ]; then
|
|
# Some files are larger than GitHub's limit of 100MB. For now,
|
|
# we can work around this by zipping in the repo and unzipping
|
|
# at build time
|
|
for zip in *.zip; do
|
|
unzip -o "$zip"
|
|
rm "$zip"
|
|
done
|
|
|
|
[ -f ./libcef.dll ] || builder_die "File libcef.dll could not be found. Path $KEYMAN_CEF4DELPHI_ROOT may not be valid."
|
|
fi
|
|
|
|
popd > /dev/null
|
|
|
|
exit 0
|