Please include more detailed build instructions for Linux.
Ubuntu server 12.10 - extract from my sysprep script (run by admin)
# dependencies
sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libminiupnpc-dev
# enable in firewall
if ! sudo ufw status | fgrep --silent 9030
then
sudo ufw allow 9030
fi
Extract from installation script (run under user account which is going to run the daemon)
#!/bin/bash
# smallchange installation
# intended to be run as the user who will run the service
# get software
if [ ! -d ~/smallchange ]
then
cd ~
git clone https://github.com/bfroemel/smallchange.git
cd smallchange/src
make -f makefile.unix
fi