-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.html
33 lines (26 loc) · 1.13 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
<html>
<body>
<h1>Installation instructions for Mirage</h1>
<h2>Core compiler and libraries</h2>
<h3>MacOS X</h3>
<ul>
<li>Install git: <pre>sudo port -v install git-core</pre></li>
<li>Install OCaml compiler and useful support libraries: <pre>sudo port -v install ocaml caml-type-conv caml-sqlite3 caml-lwt caml-ocamlnet</pre></li>
</ul>
<h3>Ubuntu</h3>
Using Ubuntu:
<ul>
<li>Install git: <pre>apt-get install git-core</pre></li>
<li>Install OCaml compiler and useful support libraries: <pre>camlp4-extra libsqlite3-ocaml-dev libtype-conv-camlp4-dev</pre></li>
<li>The version of LWT in Ubuntu is too old (you need 2.0+), so install it from <a href="http://ocsigen.org/lwt/install">source</a>.
</ul>
<h2>Mirage libraries</h2>
All of these are on <a href="http://github.com/mirage/">github.com/mirage</a>.
<ul>
<li><pre>git clone [email protected]:mirage/dyntype.git</pre></li>
<li><pre>git clone [email protected]:mirage/orm.git</pre></li>
<li><pre>git clone [email protected]:mirage/shelf.git</pre></li>
<li><pre>git clone [email protected]:mirage/cohttp.git</pre></li>
<li><pre>git clone [email protected]:mirage/cohttp-server.git</pre></li>
</body>
</html>