title |
---|
Installation |
Installing a released version
- Change into that directory you want to place Artemis
- Unzip the release Zip file
- Make sure the "Artemis" "bin" sub-directory is in your PATH
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.
- Clone the Git repository for the project
- Change into the repository directory
- Run
make
,make test
, andsudo make install
Example install:
git clone [email protected]: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