Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaced old mac os packaging script with instructions to build a clean ... #258

Merged
merged 1 commit into from Jan 29, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
43 changes: 43 additions & 0 deletions bootstrap_mac_dmg.sh
@@ -0,0 +1,43 @@
#!/bin/sh

# by following the instructions in this script, you will be able to build
# a clean .dmg for Keyhotee that should be portable to all mac systems without
# any additional dependencies
#
# prerequisite: a fresh mavericks install (in a vm, most likely)
#
# note: this script cannot be run as is, sometimes it will require manual
# intervention. You should follow the instructions in the lines
# starting with "#!!! ".

## install xcode and command line tools

#!!! download xcode from the mac app store

xcode-select --install
#!!! install command line tools

sudo xcodebuild -license
#!!! agree to the license terms


## install brew and keyhotee dependencies

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

brew install cmake boost qt5
export QTDIR=/usr/local/Cellar/qt5/5.2.0


## git clone keyhotee and compile it
git clone https://github.com/InvictusInnovations/keyhotee
cd keyhotee
git clone https://github.com/InvictusInnovations/BitShares
cd BitShares
git clone https://github.com/InvictusInnovations/fc
cd ..

cmake . && make

cd bin
$QTDIR/bin/macdeployqt Keyhotee.app -dmg
77 changes: 0 additions & 77 deletions make_keyhotee_mac_dmg.sh

This file was deleted.