mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 13:40:20 +00:00
e0bb8eab15
This really isn't useful for anyone but me as I create official binaries. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
14 lines
552 B
Bash
14 lines
552 B
Bash
#!/bin/bash -e
|
|
#
|
|
# just a simple helper to make it easier for me to sign our binaries
|
|
|
|
echo -- signing staging/Subsurface.app
|
|
cd staging
|
|
|
|
# remove the spurious DBus framework that we don't need
|
|
rm -rf Subsurface.app/Contents/Frameworks/QtDBus.framework
|
|
|
|
# remove anything codesign doesn't want us to sign
|
|
find Subsurface.app/Contents/Frameworks/ \( -name Headers -o -name \*.prl -o -name \*_debug \) -print0 | xargs -0 rm -rf
|
|
|
|
codesign --keychain $HOME/Library/Keychains/login.keychain -s "Developer ID Application: Dirk Hohndel" --deep Subsurface.app
|