summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkrzys_h <krzys_h@interia.pl>2014-11-01 13:53:58 +0100
committerkrzys_h <krzys_h@interia.pl>2014-11-01 13:53:58 +0100
commitf7f9ac08b3cec00ab4793333ab6824b7829d6890 (patch)
treea11bae7b829fdb5c1dcd648ff47388bb48a786e5
parentf5711c50612805b10590172b995eb7b0b4908d3c (diff)
downloadcolobot-f7f9ac08b3cec00ab4793333ab6824b7829d6890.tar.gz
colobot-f7f9ac08b3cec00ab4793333ab6824b7829d6890.tar.bz2
colobot-f7f9ac08b3cec00ab4793333ab6824b7829d6890.zip
Updated INSTALL.md to reflect latest changes to music repository
-rw-r--r--INSTALL.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index fbf4ece..4537e8f 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -117,10 +117,11 @@ You will need:
* OpenAL (OpenAL-Soft) >= 1.13
* PhysFS
* po4a >= 0.45 (to generate translated data files)
+ * oggenc (to generate music files)
On Ubuntu (and probably any other Debian-based system), you can use the following command to install all required packages:
```
- $ apt-get install build-essential cmake libsdl1.2debian libsdl1.2-dev libsdl-image1.2 libsdl-image1.2-dev libsdl-ttf2.0-0 libsdl-ttf2.0-dev libsdl-mixer1.2 libsdl-mixer1.2-dev libsndfile1-dev libvorbis-dev libogg-dev libpng12-dev libglew-dev libopenal-dev libboost-dev libboost-system-dev libboost-filesystem-dev libboost-regex-dev libphysfs-dev gettext git po4a
+ $ apt-get install build-essential cmake libsdl1.2debian libsdl1.2-dev libsdl-image1.2 libsdl-image1.2-dev libsdl-ttf2.0-0 libsdl-ttf2.0-dev libsdl-mixer1.2 libsdl-mixer1.2-dev libsndfile1-dev libvorbis-dev libogg-dev libpng12-dev libglew-dev libopenal-dev libboost-dev libboost-system-dev libboost-filesystem-dev libboost-regex-dev libphysfs-dev gettext git po4a vorbis-tools
```
Make sure you install the packages along with header files (often distributed in separate *-dev packages). If you miss any requirements,
@@ -136,6 +137,10 @@ If you want to compile development branch, change the first command to:
```
$ git clone -b dev https://github.com/colobot/colobot.git /path/to/colobot/sources
```
+If you also want to download optional music files, add --recursive to third command like so:
+```
+ $ git submodule update --init --recursive
+```
It is recommended that you create a build directory:
```
$ mkdir build