dfaa0ce129
Backports the following Mozilla fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1858409 (AutoFill/Services menus; fixes #3927) https://bugzilla.mozilla.org/show_bug.cgi?id=1884631 (sheets → dialogs; fixes #3936) https://bugzilla.mozilla.org/show_bug.cgi?id=148624 (ghost tooltips, because why not)
68 lines
1.6 KiB
Bash
68 lines
1.6 KiB
Bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# Version of Gecko to build with
|
|
GECKO_VERSION_MAC="115.9.1esr"
|
|
GECKO_VERSION_LINUX="115.9.1esr"
|
|
GECKO_VERSION_WIN="115.9.1esr"
|
|
RUST_VERSION=1.69.0
|
|
|
|
# URL prefix for custom builds of Firefox components
|
|
custom_components_url="https://download.zotero.org/dev/firefox-components/"
|
|
custom_components_hash_mac="bec8e3adebf8d5021f1f35fd2c65d752d4979839cbdd1ee1aa4b1d3d5ba0953b"
|
|
|
|
APP_NAME="Zotero"
|
|
APP_ID="zotero\@zotero.org"
|
|
|
|
# Whether to sign builds
|
|
SIGN=0
|
|
|
|
# OS X Developer ID certificate information
|
|
DEVELOPER_ID=F0F1FE48DB909B263AC51C8215374D87FDC12121
|
|
# Keychain and keychain password, if not building via the GUI
|
|
KEYCHAIN=""
|
|
KEYCHAIN_PASSWORD=""
|
|
NOTARIZATION_BUNDLE_ID=""
|
|
NOTARIZATION_USER=""
|
|
NOTARIZATION_TEAM_ID=""
|
|
NOTARIZATION_PASSWORD=""
|
|
|
|
# Paths for Windows installer build
|
|
NSIS_DIR='C:\Program Files (x86)\NSIS\'
|
|
|
|
SIGNTOOL_DELAY=5
|
|
|
|
# Directory for unpacked binaries
|
|
STAGE_DIR="$DIR/staging"
|
|
# Directory for packed binaries
|
|
DIST_DIR="$DIR/dist"
|
|
|
|
SOURCE_REPO_URL="https://github.com/zotero/zotero"
|
|
S3_BUCKET="zotero-download"
|
|
S3_CI_ZIP_PATH="ci/client"
|
|
S3_DIST_PATH="client"
|
|
|
|
DEPLOY_HOST="deploy.zotero"
|
|
DEPLOY_PATH="www/www-production/public/download/client/manifests"
|
|
DEPLOY_CMD="ssh $DEPLOY_HOST update-site-files"
|
|
|
|
BUILD_PLATFORMS=""
|
|
NUM_INCREMENTALS=6
|
|
|
|
if [ "`uname`" = "Darwin" ]; then
|
|
shopt -s expand_aliases
|
|
fi
|
|
|
|
if [ "`uname -o 2> /dev/null`" = "Cygwin" ]; then
|
|
export WIN_NATIVE=1
|
|
else
|
|
export WIN_NATIVE=0
|
|
fi
|
|
|
|
# Make utilities (mar/mbsdiff) available in the path
|
|
PATH="$DIR/xulrunner/bin:$PATH"
|
|
|
|
if [ -f "$DIR/config-custom.sh" ]; then
|
|
. "$DIR/config-custom.sh"
|
|
fi
|
|
|
|
unset DIR
|