diff options
author | chriseth <chris@ethereum.org> | 2016-11-08 20:47:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-08 20:47:52 +0800 |
commit | 7a30e8cf6edd3749e908913794aa6b195ba7520b (patch) | |
tree | 4ed6b70b663c2b344f81d019f8764584b02b69c3 /scripts/install_deps.sh | |
parent | dd0879fe438af22d6db49826e800ccd14c3780e7 (diff) | |
parent | 598154ed17f4155406ec1c047f3294c316ebd658 (diff) | |
download | dexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.tar dexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.tar.gz dexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.tar.bz2 dexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.tar.lz dexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.tar.xz dexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.tar.zst dexon-solidity-7a30e8cf6edd3749e908913794aa6b195ba7520b.zip |
Merge pull request #1252 from ethereum/jsoncpp-from-source
Build jsoncpp from source using jsoncpp.cmake script
Diffstat (limited to 'scripts/install_deps.sh')
-rwxr-xr-x | scripts/install_deps.sh | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 334c62d4..c9f82769 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -105,7 +105,6 @@ case $(uname -s) in brew install boost brew install cmake - brew install jsoncpp # We should really 'brew install' our eth client here, but at the time of writing # the bottle is known broken, so we will just cheat and use a hardcoded ZIP for @@ -164,7 +163,7 @@ case $(uname -s) in # See https://pkgs.alpinelinux.org/ apk update - apk add boost-dev build-base cmake jsoncpp-dev + apk add boost-dev build-base cmake ;; @@ -219,7 +218,6 @@ case $(uname -s) in gcc \ git \ libboost-all-dev \ - libjsoncpp-dev \ unzip ;; @@ -321,8 +319,7 @@ case $(uname -s) in build-essential \ cmake \ git \ - libboost-all-dev \ - libjsoncpp-dev + libboost-all-dev # Install 'eth', for use in the Solidity Tests-over-IPC. sudo add-apt-repository -y ppa:ethereum/ethereum @@ -363,9 +360,6 @@ case $(uname -s) in sudo yum -y remove boost-devel sudo wget http://repo.enetres.net/enetres.repo -O /etc/yum.repos.d/enetres.repo sudo yum install boost-devel - - # And finally jsoncpp - sudo yum -y install jsoncpp-devel else echo "Aborted CentOS Solidity Dependency Installation"; exit 1 |