mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
31 lines
1.3 KiB
Bash
Executable File
31 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
|
|
cd $ROOT
|
|
|
|
SIGNING_IDENTITY_APP="Developer ID Application: Micah Lee"
|
|
SIGNING_IDENTITY_INSTALLER="Developer ID Installer: Micah Lee"
|
|
|
|
# deleting dist
|
|
echo Deleting dist folder
|
|
rm -rf $ROOT/dist &>/dev/null 2>&1
|
|
|
|
# build the .app
|
|
echo Building OnionShare.app
|
|
python setup.py py2app
|
|
|
|
# codesign the .app
|
|
python $ROOT/install/prepare_for_codesign.py
|
|
cd dist
|
|
|
|
# for some reason --deep fails, so sign each binary individually
|
|
codesign -vvvv -s "Developer ID Application: Micah Lee" OnionShare.app/Contents/Frameworks/QtCore.framework
|
|
codesign -vvvv -s "Developer ID Application: Micah Lee" OnionShare.app/Contents/Frameworks/QtGui.framework
|
|
codesign -vvvv -s "Developer ID Application: Micah Lee" OnionShare.app/Contents/Frameworks/Python.framework
|
|
codesign -vvvv -s "Developer ID Application: Micah Lee" OnionShare.app/Contents/Frameworks/libssl.1.0.0.dylib
|
|
codesign -vvvv -s "Developer ID Application: Micah Lee" OnionShare.app/Contents/Frameworks/libcrypto.1.0.0.dylib
|
|
codesign -vvvv -s "Developer ID Application: Micah Lee" OnionShare.app/Contents/MacOS/python
|
|
codesign -vvvv -s "Developer ID Application: Micah Lee" OnionShare.app
|
|
|
|
productbuild --component OnionShare.app /Applications OnionShare.pkg --sign "$SIGNING_IDENTITY_INSTALLER"
|