]> Git Repo - VerusCoin.git/blob - README-mac.md
Merge pull request #820 from letolabs/cctests
[VerusCoin.git] / README-mac.md
1 ## Install for Mac OS X
2
3 First off you need Apple's Xcode (at least version 7, preferably 8.x or later) and the Xcode Command Line Tools:
4
5 https://itunes.apple.com/us/app/xcode/id497799835?mt=12
6
7 And Homebrew:
8
9 http://brew.sh/
10
11 And this is the list of brew packages you'll need installed:
12
13 ```shell
14 brew tap discoteq/discoteq; brew install flock
15 brew install autoconf autogen automake
16 brew install gcc@6
17 brew install binutils
18 brew install protobuf
19 brew install coreutils
20 brew install wget
21 ```
22
23 or 
24
25 ```shell
26 brew tap discoteq/discoteq; brew install flock autoconf autogen automake gcc@6 binutils protobuf coreutils wget
27 ```
28
29 Get all that installed, then run:
30
31 ```shell
32 git clone https://github.com/jl777/komodo.git
33 cd komodo
34 ./zcutil/build-mac.sh
35 ./zcutil/fetch-params.sh
36 ```
37
38 To build a distributable version of komodo then run the makeDistrib.sh script after building.
39
40 When you are done building, you need to create `Komodo.conf` the Mac way. 
41
42 ```shell
43 mkdir ~/Library/Application\ Support/Komodo
44 touch ~/Library/Application\ Support/Komodo/Komodo.conf
45 nano ~/Library/Application\ Support/Komodo/Komodo.conf
46 ```
47
48 Add the following lines to the Komodo.conf file:
49
50 ```shell
51 rpcuser=dontuseweakusernameoryougetrobbed
52 rpcpassword=dontuseweakpasswordoryougetrobbed
53 txindex=1
54 addnode=5.9.102.210
55 addnode=78.47.196.146
56 addnode=178.63.69.164
57 addnode=88.198.65.74
58 addnode=5.9.122.241
59 addnode=144.76.94.38
60 addnode=89.248.166.91
61 ```
62
63 Happy Building
This page took 0.027015 seconds and 4 git commands to generate.