summaryrefslogtreecommitdiff
path: root/website/download/index.php
blob: 81cc45ad199f3501993f4b7db2f438a91bb58cfa (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
<?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";
  $pageId = "";
  $pageTitle = _("Download");
  include "../include/header.inc.php";
?>

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

<p><?=_("The following packages are available for download:")?></p>
<ul>
	<li>OrkAudio audio capture server as a Windows precompiled binary</li>
	<li>OrkAudio audio capture server as a Debian/Ubuntu binary package</li>
	<li>OrkWeb and OrkTrack user interface and database logging servers as precompiled Java5 war files</li>
	<li>Entire Oreka codebase (Cross platform C++ and Java)</li>
</ul>

<p><?=_('You may modify and distribute Oreka under the <a href="../about/license">GNU GPL</a>.')?></p>

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