PyBitmessage/build/osx.sh

27 lines
690 B
Bash
Raw Normal View History

2013-06-15 19:09:15 +00:00
#!/bin/bash
# OS X Build script wrapper around the py2app script.
2015-01-14 14:19:06 +00:00
# This build can only be generated on OS X.
2013-06-15 19:09:15 +00:00
# Requires all build dependencies for Bitmessage
2015-01-14 14:19:06 +00:00
# Especially important is OpenSSL installed through brew
2013-06-15 19:09:15 +00:00
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."
2013-06-15 19:09:15 +00:00
export PYBITMESSAGEVERSION=$1
cd src && python2.7 build_osx.py py2app
2013-06-15 19:09:15 +00:00
if [[ $? = "0" ]]; then
hdiutil create -fs HFS+ -volname "Bitmessage" -srcfolder dist/Bitmessage.app dist/bitmessage-v$1.dmg
2013-06-15 19:09:15 +00:00
else
echo "Problem creating Bitmessage.app, stopping."
exit
fi