aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Summerwill <bob@summerwill.net>2016-08-10 23:06:51 +0800
committerGitHub <noreply@github.com>2016-08-10 23:06:51 +0800
commit3fc68da5cfdd9a621688cf5929cb8a7a85f09813 (patch)
treecce65e80c5879470ff3614c5e1bc9dda5dce179b
parent55858de1e96c6992b77ecebe3a9d055355ce476f (diff)
parent2da88203238d3fd7aa17ba182ab95bf0dec3c5d0 (diff)
downloaddexon-solidity-3fc68da5cfdd9a621688cf5929cb8a7a85f09813.tar.gz
dexon-solidity-3fc68da5cfdd9a621688cf5929cb8a7a85f09813.tar.zst
dexon-solidity-3fc68da5cfdd9a621688cf5929cb8a7a85f09813.zip
Merge pull request #848 from bobsummerwill/alpine_linux_install_deps
Blind attempt at adding Alpine Linux support to release.sh
-rwxr-xr-xscripts/install_deps.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh
index bf9bd9b2..bbf28d95 100755
--- a/scripts/install_deps.sh
+++ b/scripts/install_deps.sh
@@ -150,12 +150,14 @@ case $(uname -s) in
Alpine)
#Alpine
echo "Installing solidity dependencies on Alpine Linux."
- echo "ERROR - 'install_deps.sh' doesn't have Alpine Linux support yet."
- echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions."
- echo "If you would like to get 'install_deps.sh' working for Alpine Linux, that would be fantastic."
- echo "Drop us a message at https://gitter.im/ethereum/solidity."
- echo "See also https://github.com/ethereum/webthree-umbrella/issues/495 where we are working through Alpine support."
- exit 1
+
+ # All our dependencies can be found in the Alpine Linux official repositories.
+ # See https://pkgs.alpinelinux.org/
+
+ apk update
+ apk upgrade
+ apk add boost-dev build-base cmake jsoncpp-dev
+
;;
#------------------------------------------------------------------------------