Download";
$md = md5_file($path);
if ($xml) {
echo "
$platform
http://boinc.berkeley.edu/$path
$filename
$md
";
} else {
list_item($platform, $dlink, $md);
}
}
function version_end($xml) {
if ($xml) return;
list_end();
}
function show_462($xml=false) {
version_start("4.62", "24 Jan 2005", $xml);
version("Windows", "boinc_4.62_windows_intelx86.exe", $xml);
version("Linux/x86", "boinc_4.62_i686-pc-linux-gnu.sh", $xml);
version("Solaris/SPARC", "boinc_4.62_sparc-sun-solaris2.7.sh", $xml);
version_end($xml);
}
function show_421($xml=false) {
version_start("4.21", "11 Feb 2005", $xml);
version("Windows", "boinc_4.21_windows_intelx86.exe", $xml);
version_end($xml);
}
function show_420($xml=false) {
version_start("4.20", "8 Feb 2005", $xml);
version("Windows", "boinc_4.20_windows_intelx86.exe", $xml);
version_end($xml);
}
function show_419($xml=false) {
version_start("4.19", "25 Jan 2005", $xml);
version("Windows", "boinc_4.19_windows_intelx86.exe", $xml);
version("Linux/x86", "boinc_4.19_i686-pc-linux-gnu.gz", $xml);
version("Mac OS X", "boinc_4.19_powerpc-apple-darwin.gz", $xml);
version("Solaris/SPARC", "boinc_4.19_sparc-sun-solaris2.7.gz", $xml);
version_end($xml);
}
function show_418($xml=false) {
version_start("4.18", "24 Jan 2005", $xml);
version("Windows", "boinc_4.18_windows_intelx86.exe", $xml);
version("Linux/x86", "boinc_4.18_i686-pc-linux-gnu.gz", $xml);
version("Mac OS X", "boinc_4.18_powerpc-apple-darwin.gz", $xml);
version("Solaris/SPARC", "boinc_4.18_sparc-sun-solaris2.7.gz", $xml);
version_end($xml);
}
function show_stable($xml) {
show_419($xml);
}
function show_dev($xml) {
show_421($xml);
show_462($xml);
}
if ($_GET["no_header"]) {
show_stable(false);
if ($_GET["dev"]) {
show_dev(false);
}
exit();
}
if ($_GET["xml"]) {
header ("Content-Type: text/xml");
echo "
";
echo "\n";
show_stable(true);
echo "\n";
show_dev(true);
echo "\n";
exit();
}
page_head("Download BOINC client software");
echo "
System requirements
There are no specific hardware requirements
(CPU speed, memory, disk space, etc.).
However, these factors may limit the amount or type
of work that is sent to your computer.
Current version
";
show_stable(false);
echo "
After the download is finished:
- Windows:
open the downloaded file.
This will install BOINC on your computer.
- Macintosh OS X, Unix and Linux:
Use gunzip to uncompress if your browser has not done it for you.
Then chmod +x the executable and run it.
If your computer is not one of the above types, you can
BOINC can be customized for
languages other than English
Show development versions also.
Get data in XML format.
";
if ($_GET["dev"]) {
echo "
Development versions (latest features, possibly buggy)
";
show_dev(false);
}
page_tail();
?>