summaryrefslogtreecommitdiff
path: root/website/download/source.php
blob: 6b181552029626ca6fb26e116be4ceec3e6df964 (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
<?php
/*
 * Copyright 2004 Matt Brubeck
 * This file is licensed under a Creative Commons license:
 * http://creativecommons.org/licenses/by/2.0/
 */
  require_once "main.inc.php";
  require_once "../latest/versions.inc.php";
  $pageId = "source";
  $pageTitle = _("Source Code");
  include "../include/header.inc.php";
?>

<h2><?=$pageTitle?></h2>

<p>The source code (Java and C++) is known to compile under Linux and Windows. Build instructions can be found in README.txt in the root folder of the package. This project requires a few dependencies that are listed in README.txt. For Windows developers, there is a convenience package that includes all open source libraries (precompiled) that this project is depending upon.<p>

<h3><?=_("Recommended Download")?></h3>

<ul>
  <li><p>Windows zip file: <a href="http://sourceforge.net/project/showfiles.php?group_id=150919&package_id=166774">oreka-0.1.zip</a></p></li>
  <li><p>Unix tarball: <a href="http://sourceforge.net/project/showfiles.php?group_id=150919&package_id=166774">oreka-0.1.tar.gz</a></p></li>
</ul>

<h3>Optional download</h3>
<ul>
	<li>Windows C++ dependencies package: <a href="http://sourceforge.net/project/showfiles.php?group_id=150919&package_id=166774">oreka-0.1-cxx-win32-dependencies.zip</a></li>
	<li>Java dependencies package: <a href="http://sourceforge.net/project/showfiles.php?group_id=150919&package_id=166774">oreka-0.1-java-dependencies.zip</a></li>
</ul>

<?php
  include "../include/footer.inc.php";
?>