forked from steemit/steem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update brew syntax due to change in handling versions
Homebrew changed the way they handle versions and eliminated the versions sub-tree. Also changed the pathnames in the Cellar for legacy versions.
- Loading branch information
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,7 +162,6 @@ Install Homebrew by following the instructions here: http://brew.sh/ | |
|
||
brew doctor | ||
brew update | ||
brew tap homebrew/versions | ||
|
||
### Install steem dependencies: | ||
|
||
|
@@ -171,7 +170,7 @@ Install Homebrew by following the instructions here: http://brew.sh/ | |
automake \ | ||
cmake \ | ||
git \ | ||
homebrew/versions/boost160 \ | ||
boost160 \ | ||
libtool \ | ||
openssl \ | ||
python3 | ||
|
@@ -196,7 +195,7 @@ steem. Until then, this will allow you to install boost 1.60.0. | |
### Compile | ||
|
||
export OPENSSL_ROOT_DIR=$(brew --prefix)/Cellar/openssl/1.0.2h_1/ | ||
export BOOST_ROOT=$(brew --prefix)/Cellar/boost160/1.60.0/ | ||
export BOOST_ROOT=$(brew --prefix)/Cellar/[email protected]/1.60.0/ | ||
git submodule update --init --recursive | ||
mkdir build && cd build | ||
cmake -DBOOST_ROOT="$BOOST_ROOT" -DCMAKE_BUILD_TYPE=Release .. | ||
|