mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
Missing dollar signs added
This commit is contained in:
parent
3be8ffd486
commit
840dae8a2d
1 changed files with 10 additions and 4 deletions
14
README.md
14
README.md
|
|
@ -38,11 +38,13 @@ After that, you'll see the binaries in the `./dist` folder!
|
|||
#### To Build on OSX:
|
||||
|
||||
For Linux:
|
||||
|
||||
```bash
|
||||
$ brew install gnu-tar libicns graphicsmagick xz
|
||||
```
|
||||
|
||||
For Windows:
|
||||
|
||||
```bash
|
||||
$ brew install wine --without-x11
|
||||
$ brew install mono
|
||||
|
|
@ -51,6 +53,7 @@ $ brew install mono
|
|||
#### To Build on Linux:
|
||||
|
||||
For Linux:
|
||||
|
||||
```bash
|
||||
$ sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils
|
||||
```
|
||||
|
|
@ -58,17 +61,20 @@ $ sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-ut
|
|||
For Windows:
|
||||
|
||||
* Install Wine (1.8+ is required):
|
||||
|
||||
```bash
|
||||
$ sudo add-apt-repository ppa:ubuntu-wine/ppa -y
|
||||
$ sudo apt-get update
|
||||
$ sudo apt-get install --no-install-recommends -y wine1.8
|
||||
```
|
||||
|
||||
* Install [Mono](http://www.mono-project.com/docs/getting-started/install/linux/#usage) (4.2+ is required):
|
||||
|
||||
```bash
|
||||
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
|
||||
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
|
||||
sudo apt-get update
|
||||
sudo apt-get install --no-install-recommends -y mono-devel ca-certificates-mono
|
||||
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
|
||||
$ echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
|
||||
$ sudo apt-get update
|
||||
$ sudo apt-get install --no-install-recommends -y mono-devel ca-certificates-mono
|
||||
```
|
||||
|
||||
## Related Repositories
|
||||
|
|
|
|||
Loading…
Reference in a new issue