OSX build fixes
- include bitmsghash so that it bundles the C library PoW - include sslkeys so that SSL works in the bundle - PyBitmessage version now propagated from the shell build script
This commit is contained in:
parent
9dc9718f26
commit
075f179299
2
osx.sh
2
osx.sh
|
@ -14,6 +14,8 @@ fi
|
||||||
|
|
||||||
echo "Creating OS X packages for Bitmessage."
|
echo "Creating OS X packages for Bitmessage."
|
||||||
|
|
||||||
|
export PYBITMESSAGEVERSION=$1
|
||||||
|
|
||||||
cd src && python2.7 build_osx.py py2app
|
cd src && python2.7 build_osx.py py2app
|
||||||
|
|
||||||
if [[ $? = "0" ]]; then
|
if [[ $? = "0" ]]; then
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
import os
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
name = "Bitmessage"
|
name = "Bitmessage"
|
||||||
version = "0.4.4"
|
version = os.getenv("PYBITMESSAGEVERSION", "custom")
|
||||||
mainscript = ["bitmessagemain.py"]
|
mainscript = ["bitmessagemain.py"]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
@ -11,7 +12,7 @@ setup(
|
||||||
setup_requires = ["py2app"],
|
setup_requires = ["py2app"],
|
||||||
options = dict(
|
options = dict(
|
||||||
py2app = dict(
|
py2app = dict(
|
||||||
resources = ["images", "translations"],
|
resources = ["images", "translations", "bitmsghash", "sslkeys"],
|
||||||
includes = ['sip', 'PyQt4._qt'],
|
includes = ['sip', 'PyQt4._qt'],
|
||||||
iconfile = "images/bitmessage.icns"
|
iconfile = "images/bitmessage.icns"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user