Post
Topic
Board Announcements (Altcoins)
Re: [ANN] FedoraCoin (TiPS) - New Dev team: Fedoracoin Foundation
by
couponmeup
on 01/09/2017, 06:53:46 UTC
can somebody please make a short description of how to compile the Linux wallet and what packages are needed?

Here is short version, but this is only for command line. Still figuring out how to complile with gui, having some QT errors, here is https://kaip-padaryti.blogspot.lt/2017/09/how-to-compile-fedoracointips-source.html investigation.

Code:
Dependencies
$ sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler -y

Other dependencies:
$ sudo apt-get install autoconf libboost-all-dev libssl-dev libprotobuf-dev protobuf-compiler libqt4-dev libqrencode-dev libtool -y

$ cd
$ git clone https://github.com/fedoracoin-dev/fedoracoin
$ cd fedoracoin/
$ TIPS_ROOT=$(pwd)
$ BDB_PREFIX="${TIPS_ROOT}/db4"
$ mkdir -p $BDB_PREFIX
$ wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
$ tar -xzvf db-4.8.30.NC.tar
$ ./autogen.sh$ ./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" -without-gui --without-miniupnpc --disable-tests
$ make

Compile fedoracoin without GUI:
$ cd $TIPS_ROOT
$ ./autogen.sh$ ./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" -without-gui --without-miniupnpc --disable-tests
$ make -s -j5

Hope it helps


Any chance you have this for mac?
Smiley