Update dependency information in README

This commit is contained in:
Iwan Timmer 2015-06-21 15:29:01 +02:00
parent f3478936af
commit 5a1fd3f12d

View File

@ -31,6 +31,7 @@ For a demo see this [video](https://www.youtube.com/watch?v=XRW6O0bSHNw).
* Play games! * Play games!
##Usage ##Usage
Usage: moonlight [options] host Usage: moonlight [options] host
Actions: Actions:
@ -64,8 +65,9 @@ For a demo see this [video](https://www.youtube.com/watch?v=XRW6O0bSHNw).
##Compile and install ##Compile and install
* Download and extract Moonlight Embedded from release or git clone * Download and extract Moonlight Embedded from release or git clone
* Install development dependencies * Install development dependencies (see Dependencies)
* Initialize the git submodules ``git submodule update --init`` * Initialize the git submodules ``git submodule update --init``
* Build and install using the following commands
``` ```
mkdir build mkdir build
@ -74,21 +76,46 @@ cmake ../
make make
make install make install
``` ```
## Dependencies ## Dependencies
ArchLinux/Debian (Raspbian)/Debian Development (Raspbian) ### ArchLinux
* opus/libopus0/libopus-dev Install with
* expat/libexpat1/libexpat1-dev ```
* openssl/libssl-dev/libssl-dev pacman -S (package list)
* alsa-lib/libasound2/libasound2-dev ```
* systemd/libudev/libudev-dev * opus
* avahi/libavahi-client3/libavahi-client-dev * expat
* curl/libcurl3/libcurl4-openssl-dev * openssl
* libevdev/libevdev2/libevdev-dev * alsa-lib
* avahi
* libevdev
Development only dependencies For compilation and development you also need:
* cmake
### Debian (Raspbian)
Install with
```
apt-get install (package list)
```
* libopus0
* libexpat1
* libasound2
* libudev0
* libavahi-client3
* libcurl3
* libevdev2
For compilation and development you also need:
* libssl-dev
* libopus-dev
* libasound2-dev
* libudev-dev
* libavahi-client-dev
* libcurl4-openssl-dev
* libevdev-dev
* cmake * cmake
* C compiler
## See also ## See also