Post
Topic
Board Altcoin Discussion
Re: SmallChange [research-only] [Litecoin based] [15 seconds blocks] [scrypt]
by
Otaci
on 24/04/2013, 11:05:37 UTC
Please include more detailed build instructions for Linux.

Ubuntu server 12.10 - extract from my sysprep script (run by admin)
Code:
# 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)
Code:
#!/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