]> Git Repo - VerusCoin.git/blob - README-mac.md
Merge pull request #100 from miketout/dev
[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 then use the brewfile to install the necessary packages:
12
13 ```shell
14 brew bundle
15 ```
16
17 or 
18
19 ```shell
20 brew tap discoteq/discoteq; brew install flock autoconf autogen automake gcc@6 binutils protobuf coreutils wget
21 ```
22
23 Get all that installed, then run:
24
25 ```shell
26 git clone https://github.com/VerusCoin/VerusCoin.git
27 cd VerusCoin
28 ./zcutil/build-mac.sh
29 ./zcutil/fetch-params.sh
30 ```
31
32 To build a distributable version of VerusCoin then run the makeReleaseMac.sh script after building. This will fix the dependency references and move the komodod and komodo-cli binaries to the kmd/mac/verus-cli directory along with the 6 libraries required for it to work properly.
33
34 When you are done building, you need to create `Komodo.conf` the Mac way. 
35
36 ```shell
37 mkdir ~/Library/Application\ Support/Komodo
38 touch ~/Library/Application\ Support/Komodo/Komodo.conf
39 nano ~/Library/Application\ Support/Komodo/Komodo.conf
40 ```
41
42 Add the following lines to the Komodo.conf file:
43
44 ```shell
45 rpcuser=dontuseweakusernameoryougetrobbed
46 rpcpassword=dontuseweakpasswordoryougetrobbed
47 txindex=1
48 addnode=5.9.102.210
49 addnode=78.47.196.146
50 addnode=178.63.69.164
51 addnode=88.198.65.74
52 addnode=5.9.122.241
53 addnode=144.76.94.38
54 addnode=89.248.166.91
55 ```
56
57 Happy Building
This page took 0.026673 seconds and 4 git commands to generate.