Advertisement
Gryph_The_Grey

up to 1.14.0

Jun 24th, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. git clone https://github.com/input-output-hk/libsodium
  2.  
  3. cd libsodium
  4. git checkout 66f017f1
  5. ./autogen.sh
  6. ./configure
  7. make
  8. sudo make install
  9.  
  10. export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
  11.  
  12. # Build cardano-node cardano-cli
  13.  
  14. git clone https://github.com/input-output-hk/cardano-node.git
  15.  
  16. cd cardano-node
  17. git fetch --all --tags
  18. git tag
  19. git checkout tags/1.14.0
  20. rm ~/.cabal/bin/*
  21. cabal install cardano-node cardano-cli
  22.  
  23. cabal build all
  24.  
  25. cp -p dist-newstyle/build/x86_64-linux/ghc-8.6.5/cardano-node-1.14.0/x/cardano-node/build/cardano-node/cardano-node ~/.local/bin/
  26. cp -p dist-newstyle/build/x86_64-linux/ghc-8.6.5/cardano-cli-1.14.0/x/cardano-cli/build/cardano-cli/cardano-cli ~/.local/bin/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement