From d031d25513e775e9276c27e95c7763bc166be867 Mon Sep 17 00:00:00 2001 From: Zach Lym Date: Thu, 10 Apr 2014 16:53:13 -0700 Subject: [PATCH 1/2] Switched to MarkDown formatting, added ubuntu one-liner --- README.txt => README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) rename README.txt => README.md (87%) diff --git a/README.txt b/README.md similarity index 87% rename from README.txt rename to README.md index 9c606e51..91856bfb 100644 --- a/README.txt +++ b/README.md @@ -5,9 +5,14 @@ libcoin supports building of static and dynamic libraries on: Further, the reference application, bitcoind, is supported along with a number of representative examples. To build libcoin on unix flavor systems, you need to install development versions of Berkeley DB, Boost and OpenSSL. (Please note that on some systems OpenSSL does not contain ECDSA, if so, please install it yourselves). After installation of the necessary dependencies building follows the standard scheme: -* ./configure -* make -* sudo make install + +``` +sudo apt-get install libboost-all-dev libssl-dev libsqlite3-dev libdb++-dev cmake +./configure +make +sudo make install +``` + If you would like to tweak the installation, run the configure part manually by calling: * cmake . or ccmake . with the preferred generator. E.g. on Mac OS X building with Xcode can be accomplished by: From 5b4ae27a5646641c21f27c632b9af5db0570fd3e Mon Sep 17 00:00:00 2001 From: Zach Lym Date: Thu, 10 Apr 2014 16:54:50 -0700 Subject: [PATCH 2/2] Fixed codeblocks --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 91856bfb..3429e795 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ libcoin supports building of static and dynamic libraries on: * Windows Further, the reference application, bitcoind, is supported along with a number of representative examples. -To build libcoin on unix flavor systems, you need to install development versions of Berkeley DB, Boost and OpenSSL. (Please note that on some systems OpenSSL does not contain ECDSA, if so, please install it yourselves). After installation of the necessary dependencies building follows the standard scheme: +To build libcoin on unix flavor systems, you need to install development versions of Berkeley DB, Boost and OpenSSL. (Please note that on some systems OpenSSL does not contain ECDSA, if so, please install it yourselves). After installation of the necessary dependencies building follows the standard ./configure, make, make install scheme. ``` sudo apt-get install libboost-all-dev libssl-dev libsqlite3-dev libdb++-dev cmake @@ -14,9 +14,14 @@ sudo make install ``` If you would like to tweak the installation, run the configure part manually by calling: -* cmake . or ccmake . + +`cmake .` or `ccmake .` + with the preferred generator. E.g. on Mac OS X building with Xcode can be accomplished by: -* cmake -GXcode . +``` +cmake -GXcode . +``` + Then open libcore.xcodeproj using Xcode and build libcoin from here. On windows separate building instructions can be found online: