-
Notifications
You must be signed in to change notification settings - Fork 3
/
install.html
111 lines (111 loc) · 2.3 KB
/
install.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<title>Project Artemis</title>
<link rel="stylesheet" type="text/css" href="/printfonts/print.css" media="print" />
<link rel="stylesheet" type="text/css" href="/webfonts/fonts.css" media="screen" />
<link href="/css/site.css" rel="stylesheet" />
</head>
<body>
<header>
Installation
</header>
<section>
<h1 id="installation">
Installation
</h1>
<p>
Installing a released version
</p>
<ol type="1">
<li>
Change into that directory you want to place Artemis
</li>
<li>
Unzip the release Zip file
</li>
<li>
Make sure the “Artemis” “bin” sub-directory is in your PATH
</li>
</ol>
<h2 id="example">
Example
</h2>
<pre><code> 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"</code></pre>
<h2 id="from-source">
From source
</h2>
<p>
Compiling from source requires <a href="https://miasap.se/obnc">OBNC</a>, Git, GNU Make, a C compiler and linker.
</p>
<ol type="1">
<li>
Clone the Git repository for the project
</li>
<li>
Change into the repository directory
</li>
<li>
Run <code>make</code>, <code>make test</code>, and <code>sudo make install</code>
</li>
</ol>
<p>
Example install:
</p>
<pre><code> git clone git@github.com:rsdoiel/Artemis
cd Artemis
make
make full_test
sudo make install</code></pre>
<p>
Example uninstall
</p>
<pre><code> cd Artemis
sudo make uninstall</code></pre>
<p>
The Makefile supports an installation prefix. If you install with a prefix you need to uninstall with the same prefix. E.g.
</p>
<pre><code> sudo make install prefix=/opt/local
sudo make uninstall prefix=/opt/local</code></pre>
</section>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="./">README</a>
</li>
<li>
<a href="license.html">LICENSE</a>
</li>
<li>
<a href="install.html">INSTALL</a>
</li>
<li>
<a href="./obnc/">OBNC Modules</a>
</li>
<li>
<a href="./oxford/">Obc-3 Modules</a>
</li>
<li>
<a href="./ofrontplus/">Ofront+ Modules</a>
</li>
<li>
<a href="./development-notes.html">development notes</a>
</li>
<li>
<a href="https://github.com/rsdoiel/Artemis">Github</a>
</li>
</ul>
</nav>
<footer>
copyright (c) 2021 all rights reserved.
Released under the BSD 3-Clause license
See: http://opensource.org/licenses/BSD-3-Clause
</footer>
</body>
</html>