Disable fileicon, rejected by code-signing
This commit is contained in:
parent
cec22ecf71
commit
9331ff504f
2 changed files with 8 additions and 5 deletions
|
|
@ -4,10 +4,13 @@ set -ex
|
||||||
make DESTDIR=${PWD}/${INSTALL_DIR} install
|
make DESTDIR=${PWD}/${INSTALL_DIR} install
|
||||||
|
|
||||||
# Set bundle icons
|
# Set bundle icons
|
||||||
bundle_icns=/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/KEXT.icns
|
# Note: disabled, rejected by the code-sign step
|
||||||
for bundle in sfizz.vst3 sfizz.component sfizz.lv2; do
|
if false; then
|
||||||
fileicon set "${INSTALL_DIR}"/"$bundle" "$bundle_icns"
|
bundle_icns=/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/KEXT.icns
|
||||||
done
|
for bundle in sfizz.vst3 sfizz.component sfizz.lv2; do
|
||||||
|
fileicon set "${INSTALL_DIR}"/"$bundle" "$bundle_icns"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
# Perform code-signing
|
# Perform code-signing
|
||||||
if test -z "${CODESIGN_PASSWORD}"; then
|
if test -z "${CODESIGN_PASSWORD}"; then
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ fi
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
brew install libsndfile dylibbundler fileicon
|
brew install libsndfile dylibbundler
|
||||||
|
|
||||||
cd ~; npm install appdmg; cd -
|
cd ~; npm install appdmg; cd -
|
||||||
~/node_modules/appdmg/bin/appdmg.js --version
|
~/node_modules/appdmg/bin/appdmg.js --version
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue