Update #6:
I've been able to put in a little more time on this today, so here is what I'm doing.
It looks like:
/contrib/macdeploy/fancy.plist
/contrib/macdeploy/Base.lproj/InfoPlist.strings
Control how the DMG bundle is written, so I've modified them to change "Bitcoin Core" to "Bitcoin Unlimited" and "Bitcoin-Qt.app" to "BitcoinUnlimited-Qt.app". I figure I'll probably have to rename Bitcoin-Qt.app to BitcoinUnlimited-Qt.app after it gets built.
In:
/doc/build-osx.md
It says:
All dependencies should be compiled with these flags:
-mmacosx-version-min=10.7 -arch x86_64 -isysroot $(xcode-select --print-path)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk
Oh, it's missing a dependency in the homebrew list as well:
libevent
SSL is kinda borked I guess, so after it's installed via homebrew you'll need to (thanks
Francesco!):
export LDFLAGS=-L/usr/local/opt/openssl/lib
export CPPFLAGS=-I/usr/local/opt/openssl/include
Downloaded the MacOSX10.7.sdk from here:
https://github.com/phracker/MacOSX-SDKs
So I'm using homebrew, and I'm not sure how to rebuild the dependancies using those options. I am trying to build bitcoinunlimited right now using the following:
./autogen.sh
./configure --with-gui=qt5
make CFLAGS='-mmacosx-version-min=10.7 -arch x86_64 -isysroot /Users/phraust/Build/MacOSX10.7.sdk'
I'll try to package it up and see how that works locally after this. Still trying to figure out how to rebuild my brew dependancies though, so I doubt it'll work on other machines at this point.