thorium-mirror/build_dmg.sh

21 lines
493 B
Bash
Raw Normal View History

2022-01-06 03:03:26 -03:00
#!/bin/bash
2022-04-11 11:48:53 -04:00
# Copyright (c) 2022 Alex313031 and Midzer.
2022-04-09 04:39:24 -04:00
YEL='\033[1;33m' # Yellow
2022-01-06 03:03:26 -03:00
2022-04-09 04:39:24 -04:00
printf "\n" &&
printf "${YEL}Building .dmg of Thorium...\n" &&
printf "\n" &&
tput sgr0 &&
xattr -csr out/thorium/Thorium.app &&
codesign --force --deep --sign - out/thorium/Thorium.app &&
2022-01-06 03:03:26 -03:00
chrome/installer/mac/pkg-dmg \
2022-01-07 07:18:45 -03:00
--sourcefile --source out/thorium/Thorium.app \
2022-01-06 03:03:26 -03:00
--target "out/thorium/Thorium_MacOS.dmg" \
--volname Thorium --symlink /Applications:/Applications \
--format UDBZ --verbosity 2