Installing a released version
mkdir -p $HOME/tools
cd $HOME/tools
unzip $HOME/Download/Artemis-0.0.1-Linux-x86_64.zip
export PATH="$HOME/tools/Artimis/bin:$PATH"
Compiling from source requires OBNC, Git, GNU Make, a C compiler and linker.
make
, make test
, and sudo make install
Example install:
git clone git@github.com:rsdoiel/Artemis
cd Artemis
make
make full_test
sudo make install
Example uninstall
cd Artemis
sudo make uninstall
The Makefile supports an installation prefix. If you install with a prefix you need to uninstall with the same prefix. E.g.
sudo make install prefix=/opt/local
sudo make uninstall prefix=/opt/local