Skip to content
This repository has been archived by the owner on May 16, 2019. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffmabc committed Oct 11, 2016
1 parent 314805f commit 5c6137d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .travis/openbazaard.linux64.spec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ a = Analysis(['../openbazaard.py'],
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
a.datas += [('../ob.cfg', 'ob.cfg', 'DATA'),('./bitcointools/english.txt','/usr/local/bitcointools/english.txt','DATA')]
a.datas += [('../ob.cfg', 'ob.cfg', 'DATA'),('./bitcointools/english.txt','/home/travis/virtualenv/python2.7.10/lib/python2.7/site-packages/bitcointools/english.txt','DATA')]
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
Expand Down
17 changes: 3 additions & 14 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ mkdir dist

echo "32-bit..."

wget -q https://www.python.org/ftp/python/2.7.11/Python-2.7.11.tgz
tar xzf Python-2.7.11.tgz
wget -q https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tgz
tar xzf Python-2.7.10.tgz
sudo apt-get -qq -y install gcc-multilib g++-multilib
CFLAGS=-m32 LDFLAGS=-m32 ./configure --prefix=/opt/Python2.7-32bits
make
Expand All @@ -38,18 +38,7 @@ mkdir dist
virt/bin/pip install -q setuptools==19.2
virt/bin/pyinstaller -D -F .travis/openbazaard.linux32.spec

# echo "64-bit"
#
# mkdir dist/linux64
# cd dist/linux64
#
# echo "Set up virtualenv"
# virtualenv env
# . env/bin/activate
#
# echo "Install Python dependencies"
# pyinstaller -D -F ../../.travis/openbazaard.linux64.spec


# ;;
#
# "osx")
Expand Down

0 comments on commit 5c6137d

Please sign in to comment.