blob: 0bd6675d41b18a579f981956d4cafd6983cdd524 (
plain)
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
|
%{
Ousía Homepage
(c) Andreas Stöckel, Benjamin Paaßen 2015
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0
International License. <http://creativecommons.org/licenses/by-sa/4.0/>
}%
\import[ontology]{ontology/webpage}
\begin{webpage}{Ousía Framework – Download}
\section{Download}
You can download both the source code of our reference implementation and
the content of this website (as an example of how you can use Ousía).
\paragraph
Please note that this a pre-alpha development preview. We do not provide
any support yet and any aspect of the language is subject to change.
\subsection{Download}
You'll need \inlineCode{git} to access our source code repository. The reference
implementation can be downloaded using the following command line:
\code[bash]{git clone http://git.ousia-framework.org/ousia.git}
\paragraph
The website can be downloaded using the following command line:
\code[bash]{git clone http://git.ousia-framework.org/ousia-www.git}
\subsection{Compiling the reference implementation}
To compile the source code, you'll need a C++11 compliant compiler such as
\inlineCode{gcc} in version 4.8 or later or \inlineCode{clang} in version 3.5 or
later.
\paragraph
Furhtermore, you'll need to install the \inlineCode{boost} and
\inlineCode{expat} development libraries.
\paragraph
Under Fedora 20 and later you can install these packages using the following
command line:
\code[bash]{sudo yum install boost-devel expat-devel}
\paragraph
Under Ubuntu 14.04 and later you can install these packages using the following
command line:
\code[bash]{sudo apt-get install libboost-all-dev libexpat-dev}
\paragraph
Finally, to compile Ousía, go into the downloaded source code directory and execute
\code[bash]{mkdir build && cd build && cmake .. && make}
\end{webpage}
|