Now you can run ERC-V3 on ROKOS v7 Core ("Flavors" version not yet released). Get it from
http://rokos.space/downloads.html for Pine64, RaspberryPi (v2 and v3).
ROKOS v7 Core comes with most dependencies already installed and configured, so compiling a wallet/daemon is a breeze.
Default user:
piDefault pass:
rokosInstructions for building wallet, daemon and CLI for ERC-V3:
Those instructions might apply in previous version(s) of "Core" and/or "Flavors", but I didn't test them. Anyway, Oktoshi does a terrific job.
# get the source
pi@pine64:~$ git clone https://github.com/LIMXTEC/Europecoin-V3 ERC-V3src/
# actually go there ;)
pi@pine64:~$ cd ERC-V3src/
## We link the proper bd library
export CPATH="/usr/local/BerkeleyDB.4.8/include"
export LIBRARY_PATH="/usr/local/BerkeleyDB.4.8/lib"
pi@pine64:~$ ./autogen.sh
pi@pine64:~$ ./configure
pi@pine64:~$ make
pi@pine64:~$ strip src/europecoind
pi@pine64:~$ strip src/europecoin-cli
pi@pine64:~$ strip src/europecoin-tx
pi@pine64:~$ strip qt/europecoin-qt
# if you want the binaries copied tousr/local/bin
pi@pine64:~$ make install
# ... or you can copy those binaries to the folder of your choice
# binaries are appearing as "shared libraries" for some reason... maybe compiler options...
# ...but they run nonetheless if launched with "Application Finder" (<Alt>+<F2>)
# further tests required
# Have fun and (maybe) show some appreciation (EJZwagsubfxn1xeB4JmztAWitgTPty3FzN).
# User: https://bitcointalk.org/index.php?action=profile;u=356883
A few closing observations:
- Pine64 is available in 3 versions/models: 512MB/1GB/2GB RAM. The 2GB RAM model is recommended (1GB model might work);
- binaries compiled on/for Pine64 are not compatible with Raspberry Pi (not tested, but afaik the processors are of slightly different architectures) and the same might hold true for the blockchain database (heck, I just hope Bitcoin community will decide to ditch that antiquated and data-corruption prone BerkeleyDB 4.8 in favor of something better).