Hello. I installed devcoind from source on a debian squeeze machine, so here is the step by step guide:
Download source from
http://sourceforge.net/projects/galacticmilieu/files/DeVCoin/ and unpack it anywhere, e.g.home/emfox/devcoind .
Of course you should have g++ and make to build it, and devcoin use curl and db, we need them, at last, boost and glib2.0 is needed (I don't like bother to find which boost lib, so installed all of them):
sudo apt-get install g++ make libcurl4-openssl-dev libdb++-dev libboost-all-dev libglib2.0-dev
then compile it:
cdhome/emfox/devcoind/src
make -f makefile.unix USE_UPNP= bitcoind
Now there's a file 'bitcoind' laying inhome/emfox/devcoind/src, but we do not like the name and won't let it stay in a source tree, so we just:
mvhome/emfox/devcoind/src/bitcoindhome/emfox/bin/devcoind
before running it, we should edit and add this line to ~/.devcoin/devcoin.conf:
rpcpassword=your_random_password_blabla
at last, run!
/home/emfox/bin/devcoind -daemon
devcoind should have started, and listening on port 52333.
That's all.
Edited, adjust word and add quotes.
I'll maintain it if anything changes.