Peter Surda
3033520995
- rearrange obsolete build scripts - rearrange working build scripts - add build / devel scripts I use - add existing development tests (bloom filter, message encoding, thread interrupts) - add directory descriptions
27 lines
690 B
Bash
Executable File
27 lines
690 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# OS X Build script wrapper around the py2app script.
|
|
# This build can only be generated on OS X.
|
|
# Requires all build dependencies for Bitmessage
|
|
# Especially important is OpenSSL installed through brew
|
|
|
|
export ARCHFLAGS="-arch i386 -arch x86_64"
|
|
|
|
if [[ -z "$1" ]]; then
|
|
echo "Please supply a version number for this release as the first argument."
|
|
exit
|
|
fi
|
|
|
|
echo "Creating OS X packages for Bitmessage."
|
|
|
|
export PYBITMESSAGEVERSION=$1
|
|
|
|
cd src && python2.7 build_osx.py py2app
|
|
|
|
if [[ $? = "0" ]]; then
|
|
hdiutil create -fs HFS+ -volname "Bitmessage" -srcfolder dist/Bitmessage.app dist/bitmessage-v$1.dmg
|
|
else
|
|
echo "Problem creating Bitmessage.app, stopping."
|
|
exit
|
|
fi
|