Let's install the AssPennies daemon!
Use Homebrew to install the AssPennies dependencies. Homebrew is great, and lets you install packages in OS X similar to apt-get
on Linux.
If you're running 10.9 (Mavericks), you have to compile boost with special parameters, because of incompatibilities between libstdc++
and libc++
.
brew install boost --build-from-source --cc=gcc-4.2
If you're running 10.10 (Yosemite), you can just install boost
normally.
brew install boost
Now install the other dependencies:
brew install berkeley-db
brew install openssl
brew install miniupnpc
Navigate to your AssPennies src
directory, and compile the asspennies daemon:
cd ~/AssPennies/src
make -f makefile.osx
Now let's install the wallet!
Requires Qt 4.8
. Download here: http://download.qt.io/archive/qt/4.8/.
After installing Qt
, compile the AssPennies-Qt
wallet:
cd ~/AssPennies
qmake -spec macx-g++ asspennies-qt.pro
make