this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #1316 from joshgoebel/patch-2

(chore) Migrate Raspberry Pi build instructions from wiki

authored by

Vadim Grigoruk and committed by
GitHub
38070e60 29df578d

+34 -1
+34 -1
README.md
··· 103 103 make -j4 104 104 ``` 105 105 106 + ### Raspberry Pi (Retropie) 107 + 108 + First, add jessie-backports repo to your `/etc/apt/sources.list` 109 + 110 + `deb http://ftp.debian.org/debian jessie-backports main` 111 + 112 + Then run the following commands in the Terminal 113 + 114 + ``` 115 + # required public keys 116 + gpg --keyserver pgpkeys.mit.edu --recv-key 8B48AD6246925553 117 + gpg -a --export 8B48AD6246925553 | sudo apt-key add - 118 + gpg --keyserver pgpkeys.mit.edu --recv-key 7638D0442B90D010 119 + gpg -a --export 7638D0442B90D010 | sudo apt-key add - 120 + 121 + # upgrade system 122 + sudo apt-get update 123 + sudo apt-get dist-upgrade 124 + 125 + # install software 126 + sudo apt-get install git build-essential libgtk-3-dev libsdl2-dev zlib1g-dev 127 + sudo apt-get install -t jessie-backports liblua5.3-dev 128 + git clone --recursive https://github.com/nesbox/TIC-80 && cd TIC-80/build 129 + cmake .. 130 + make -j4 131 + ``` 132 + 133 + _Note:_ If you are using a normal Raspberry Pi image (not Retropie) you may not 134 + have OpenGL drivers enabled. Run `sudo raspi-config`, then select 7 135 + for "Advanced Options", followed by 6 for "GL Drivers", and enable "GL 136 + (Fake KMS) Desktop Driver". After changing this setting, reboot. 137 + 106 138 ## Mac 107 139 install `Command Line Tools for Xcode` and `brew` package manager 108 140 ··· 139 171 * Damien de Lemeny - [GitHub @ddelemeny](https://github.com/ddelemeny) 140 172 * Adrian Siekierka - [GitHub @asiekierka](https://github.com/asiekierka) [Website](https://asie.pl/) 141 173 * Jay Em (Sweetie16 palette) - [Twitter @GrafxKid](https://twitter.com/GrafxKid) 142 - * msx80 - [Twitter @msx80](https://twitter.com/msx80) [Github msx80](https://github.com/msx80) 174 + * msx80 - [Twitter @msx80](https://twitter.com/msx80) [Github msx80](https://github.com/msx80) 175 + * Josh Goebel - [Twitter @dreamer3](https://twitter.com/dreamer3) [Github joshgoebel](https://github.com/joshgoebel)