Added 'Get Curl' to prerequisites section

This commit is contained in:
Onat Yiğit Mercan 2015-06-26 23:47:37 +03:00
parent 5288a44ae4
commit 7a0c476503
1 changed files with 11 additions and 2 deletions

View File

@ -20,10 +20,11 @@ The rest of this section deals with setting up a machine to run applications wit
### Prerequisites
* `Unzip`
* `Curl`
---
### Get unzip
### Get Unzip
`Unzip` is needed to unpack runtime packages.
@ -31,6 +32,14 @@ The rest of this section deals with setting up a machine to run applications wit
sudo apt-get install unzip
```
### Get Curl
`Curl` is a command line tool for transferring data specified with URL syntax.
```
sudo apt-get install curl
```
---
### Get Mono
@ -53,7 +62,7 @@ sudo apt-get install mono-complete
To build libuv you should do the following:
```
sudo apt-get install automake libtool curl
sudo apt-get install automake libtool
curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | sudo tar zxfv - -C /usr/local/src
cd /usr/local/src/libuv-1.4.2
sudo sh autogen.sh