mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-09-17 12:56:37 +08:00
55 lines
1.7 KiB
Bash
Executable File
55 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#Contents partly stolen from https://scriptingosx.com/2019/09/notarize-a-command-line-tool/
|
|
#Will need updating for XCode 13+
|
|
|
|
if [ $# -lt 7 ]
|
|
then
|
|
echo "Usage: ./macosx_notarize.sh <path> <certname> <teamname> <bundleid> <applekeyid> <applekeypath> <applekeyissuer>"
|
|
echo ""
|
|
echo "path: the absolute(!) target path"
|
|
echo "certname: the apple signing certificate name. Something like \"Developer ID Application: xxx (yyy)\""
|
|
echo "teamname: the apple team name. 10-digit id yyy from the cert name."
|
|
echo "bundleid: the bundle id of the artifact"
|
|
echo "applekeyid: id of your apple api key"
|
|
echo "applekeypath: path to your apple api key"
|
|
echo "applekeyissuer: uuid of your apple api key issuer"
|
|
exit 1
|
|
fi
|
|
|
|
echo "##########################################################"
|
|
echo "Notarizing $1... This may take a while."
|
|
|
|
APP_DIR="$( dirname "$1" )"
|
|
APP_NAME="$( basename "$1" )"
|
|
ZIP_PATH=$1.zip
|
|
|
|
cd $APP_DIR
|
|
echo "Creating zip"
|
|
zip -r "$APP_NAME.zip" "$APP_NAME"
|
|
|
|
echo "Uploading $ZIP_PATH for notarization and waiting for result"
|
|
xcrun notarytool submit "$1.zip" \
|
|
--key $6 \
|
|
--key-id $5 \
|
|
--issuer $7 \
|
|
--wait 2>&1 | tee notary_output.txt
|
|
rm "$APP_NAME.zip"
|
|
requestUUID=$(cat notary_output.txt | awk '/id:/ { print $NF; exit; }')
|
|
rm notary_output.txt
|
|
|
|
echo "Notarization log:"
|
|
xcrun notarytool log $requestUUID \
|
|
--key $6 \
|
|
--key-id $5 \
|
|
--issuer $7 \
|
|
notarization.log
|
|
cat notarization.log
|
|
rm -f notarization.log
|
|
echo ""
|
|
|
|
# staple
|
|
xcrun stapler -v staple "$1"
|
|
|
|
echo "##########################################################"
|