summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSafwat Halaby <SafwatHalaby@users.noreply.github.com>2015-11-21 14:28:02 +0100
committerSafwat Halaby <SafwatHalaby@users.noreply.github.com>2015-11-21 15:36:24 +0100
commitc14ebd64c4b360b0e411aef034564b54ac1ad923 (patch)
tree7e75c9d7b2b130d76e942c46ff7bb6fa30a447b9
parentMerge pull request #2671 from SafwatHalaby/compile (diff)
downloadcuberite-c14ebd64c4b360b0e411aef034564b54ac1ad923.tar
cuberite-c14ebd64c4b360b0e411aef034564b54ac1ad923.tar.gz
cuberite-c14ebd64c4b360b0e411aef034564b54ac1ad923.tar.bz2
cuberite-c14ebd64c4b360b0e411aef034564b54ac1ad923.tar.lz
cuberite-c14ebd64c4b360b0e411aef034564b54ac1ad923.tar.xz
cuberite-c14ebd64c4b360b0e411aef034564b54ac1ad923.tar.zst
cuberite-c14ebd64c4b360b0e411aef034564b54ac1ad923.zip
-rw-r--r--README.md28
1 files changed, 18 insertions, 10 deletions
diff --git a/README.md b/README.md
index a9940db33..92a7413f5 100644
--- a/README.md
+++ b/README.md
@@ -11,24 +11,32 @@ Subscribe to [the newsletter](http://newsletter.cuberite.org/subscribe.htm) for
Installation
------------
-Hosted Cuberite is available DIY on DigitalOcean: [![Install on DigitalOcean](http://doinstall.bearbin.net/button.svg)](http://doinstall.bearbin.net/install?url=https://github.com/cuberite/cuberite) and [Gamocosm](https://gamocosm.com) also offers Cuberite support.
-For Linux there is an easy installation method, just run this in your terminal:
+There are several ways to obtain Cuberite.
- curl -s https://raw.githubusercontent.com/cuberite/cuberite/master/easyinstall.sh | sh
+#### Binaries
+ - The easiest method is downloading for Windows or Linux from the [Project site](http://cuberite.org/).
+ - You can use the EasyInstall script for Linux, which automatically downloads the correct binary. The script is described below.
+ - You can also obtain a binary from the [buildserver archive](http://builds.cuberite.org).
-For Windows, you just need to download a file and extract it:
+##### The EasyInstall script
+This Linux script will download the correct binary from the project site.
- - [Windows 32 bit](http://builds.cuberite.org/job/Cuberite%20Windows%20x86%20Master/lastSuccessfulBuild/artifact/Install/Cuberite.zip)
- - [Windows 64 bit](http://builds.cuberite.org/job/Cuberite%20Windows%20x64%20Master/lastSuccessfulBuild/artifact/Install/Cuberite.zip)
+ bash -c "$(wget -O - https://raw.githubusercontent.com/cuberite/cuberite/master/easyinstall.sh)"
-For other operating systems you need to download and compile yourself. This can be done either manually, or with this automatic script:
+#### Compiling
+ - You can compile automatically for Linux with the `compile.sh` script. The script is described below.
+ - You can also compile manually.
- bash -c "$(wget -O - https://raw.githubusercontent.com/cuberite/cuberite/master/compile.sh)"
+Compiling may provide better performance performance (1.5-3x as fast) and it supports more operating systems. See the [COMPILING.md](https://github.com/cuberite/cuberite/blob/master/COMPILING.md) file for more details.
+
+##### The compile.sh script
+This script downloads the source code and compiles it. The script is smart enough to notify you of missing dependencies and instructing you on how to install them. The script doesn't work for Windows.
-There is also an archive of binary builds on the buildserver: http://builds.cuberite.org
+ bash -c "$(wget -O - https://raw.githubusercontent.com/cuberite/cuberite/master/compile.sh)"
-Compiling the server yourself has other benefits: you may get better performance performance (1.5-3x as fast) and it supports more operating systems. See the [COMPILING.md](https://github.com/cuberite/cuberite/blob/master/COMPILING.md) file for more details.
+#### Hosted services
+ - Hosted Cuberite is available DIY on DigitalOcean: [![Install on DigitalOcean](http://doinstall.bearbin.net/button.svg)](http:// doinstall.bearbin.net/install?url=https://github.com/cuberite/cuberite) and [Gamocosm](https://gamocosm.com) also offers Cuberite support.
Contributing
------------