thorium-mirror/infra/build_dmg_cr.sh

47 lines
1.1 KiB
Bash
Raw Normal View History

2022-06-17 11:11:35 -04:00
#!/bin/bash
2024-02-12 15:57:09 -03:00
# Copyright (c) 2024 Alex313031 and midzer.
2022-06-17 11:11:35 -04:00
YEL='\033[1;33m' # Yellow
2023-06-23 01:29:21 -04:00
CYA='\033[1;96m' # Cyan
2022-06-17 11:11:35 -04:00
RED='\033[1;31m' # Red
GRE='\033[1;32m' # Green
2023-06-23 01:29:21 -04:00
c0='\033[0m' # Reset Text
bold='\033[1m' # Bold Text
underline='\033[4m' # Underline Text
2022-06-17 11:11:35 -04:00
# Error handling
yell() { echo "$0: $*" >&2; }
die() { yell "$*"; exit 111; }
try() { "$@" || die "${RED}Failed $*"; }
2023-06-23 01:29:21 -04:00
# chromium/src dir env variable
if [ -z "${CR_DIR}" ]; then
CR_SRC_DIR="$HOME/chromium/src"
export CR_SRC_DIR
else
CR_SRC_DIR="${CR_DIR}"
export CR_SRC_DIR
fi
2022-06-17 11:11:35 -04:00
printf "\n" &&
printf "${YEL}Building .dmg of Chromium...\n" &&
2023-06-23 01:29:21 -04:00
printf "${CYA}\n" &&
cd ${CR_SRC_DIR} &&
2022-06-17 11:11:35 -04:00
# Fix file attr
xattr -csr out/thorium/Chromium.app &&
# Sign binary
codesign --force --deep --sign - out/thorium/Chromium.app &&
# Build dmg package
chrome/installer/mac/pkg-dmg --sourcefile --source out/thorium/Chromium.app --target "out/thorium/Chromium_MacOS.dmg" --volname Chromium --symlink /Applications:/Applications --format UDBZ --verbosity 2 &&
2023-06-23 01:29:21 -04:00
2023-06-23 01:38:08 -04:00
cd $HOME/thorium &&
2023-06-23 01:29:21 -04:00
cat logos/apple_ascii_art.txt &&
printf "${GRE}.DMG Build Completed. ${YEL}Installer at //chromium/src/out/thorium/Chromium*.dmg\n" &&
2022-06-17 11:13:30 -04:00
tput sgr0