summaryrefslogtreecommitdiff
path: root/website/download/source.php
diff options
context:
space:
mode:
Diffstat (limited to 'website/download/source.php')
-rw-r--r--website/download/source.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/website/download/source.php b/website/download/source.php
new file mode 100644
index 0000000..6b18155
--- /dev/null
+++ b/website/download/source.php
@@ -0,0 +1,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";
+?>