pokered/INSTALL.md

58 lines
1.1 KiB
Markdown
Raw Normal View History

2013-12-08 21:02:25 +00:00
# Linux
sudo apt-get install make gcc bison git python python-setuptools
2015-02-07 19:20:25 +00:00
sudo easy_install pypng
2013-12-08 21:02:25 +00:00
git clone git://github.com/bentley/rgbds.git
cd rgbds
sudo make install
cd ..
2013-12-08 21:02:25 +00:00
2015-02-07 19:20:25 +00:00
git clone --recursive git://github.com/iimarckus/pokered.git
2013-12-08 21:02:25 +00:00
cd pokered
To build **pokered.gbc** and **pokeblue.gbc**:
2013-12-08 21:02:25 +00:00
make
2013-12-08 21:02:25 +00:00
To build them individually:
2013-12-08 21:02:25 +00:00
make red
make blue
2013-12-08 21:02:25 +00:00
2015-02-07 19:20:25 +00:00
# Mac
2013-12-08 21:02:25 +00:00
2014-11-07 07:13:35 +00:00
In the shell, run:
xcode-select --install
2015-02-07 19:20:25 +00:00
sudo easy_install pypng
2014-11-07 07:13:35 +00:00
2015-02-07 19:20:25 +00:00
git clone git://github.com/bentley/rgbds.git
cd rgbds
sudo make install
cd ..
2013-12-08 21:02:25 +00:00
2015-02-07 19:20:25 +00:00
git clone --recursive git://github.com/iimarckus/pokered.git
cd pokered
2013-12-08 21:02:25 +00:00
2015-02-07 19:20:25 +00:00
make
2013-12-08 21:02:25 +00:00
2015-02-07 19:20:25 +00:00
# Windows
2013-12-08 21:02:25 +00:00
2015-02-07 19:20:25 +00:00
To build on Windows, use [**Cygwin**](http://cygwin.com/install.html) (32-bit).
2013-12-08 21:02:25 +00:00
2015-02-07 19:20:25 +00:00
In the installer, select the following packages: `make` `git` `gettext` `python` `python-setuptools`
2015-02-07 19:20:25 +00:00
Then get the most recent version of [**rgbds**](https://github.com/bentley/rgbds/releases/).
Put `rgbasm.exe`, `rgblink.exe` and `rgbfix.exe` in `C:\cygwin\usr\local\bin`.
2015-02-07 19:20:25 +00:00
In the **Cygwin terminal**:
2015-02-07 19:20:25 +00:00
easy_install pypng
git clone --recursive git://github.com/iimarckus/pokered.git
cd pokered
2013-12-08 21:02:25 +00:00
make