mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
INSTALL: git clone --recursive
This commit is contained in:
parent
451f7fce29
commit
f94af3e2d6
56
INSTALL.md
56
INSTALL.md
|
@ -1,73 +1,57 @@
|
||||||
# Linux
|
# Linux
|
||||||
|
|
||||||
Dependencies:
|
|
||||||
|
|
||||||
sudo apt-get install make gcc bison git python python-setuptools
|
sudo apt-get install make gcc bison git python python-setuptools
|
||||||
sudo easy_install pip
|
sudo easy_install pypng
|
||||||
|
|
||||||
The assembler used is [**rgbds**](https://github.com/bentley/rgbds).
|
|
||||||
|
|
||||||
git clone git://github.com/bentley/rgbds.git
|
git clone git://github.com/bentley/rgbds.git
|
||||||
cd rgbds
|
cd rgbds
|
||||||
sudo mkdir -p /usr/local/man/man{1,7}
|
|
||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf rgbds
|
|
||||||
|
|
||||||
Set up the repository.
|
git clone --recursive git://github.com/iimarckus/pokered.git
|
||||||
|
|
||||||
git clone git://github.com/iimarckus/pokered.git
|
|
||||||
cd pokered
|
cd pokered
|
||||||
git submodule init
|
|
||||||
git submodule update
|
|
||||||
sudo pip install -r extras/requirements.txt
|
|
||||||
|
|
||||||
To build **pokered.gbc** and **pokeblue.gbc**:
|
To build **pokered.gbc** and **pokeblue.gbc**:
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
||||||
This should take about 10 seconds. Subsequent builds are faster.
|
|
||||||
|
|
||||||
To build them individually:
|
To build them individually:
|
||||||
|
|
||||||
make red
|
make red
|
||||||
make blue
|
make blue
|
||||||
|
|
||||||
|
|
||||||
# OS X
|
# Mac
|
||||||
|
|
||||||
In the shell, run:
|
In the shell, run:
|
||||||
|
|
||||||
xcode-select --install
|
xcode-select --install
|
||||||
|
sudo easy_install pypng
|
||||||
|
|
||||||
Then follow the Linux instructions.
|
git clone git://github.com/bentley/rgbds.git
|
||||||
|
cd rgbds
|
||||||
|
sudo make install
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
git clone --recursive git://github.com/iimarckus/pokered.git
|
||||||
|
cd pokered
|
||||||
|
|
||||||
|
make
|
||||||
|
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
|
|
||||||
It's recommended that you use a virtual machine running Linux or OS X.
|
To build on Windows, use [**Cygwin**](http://cygwin.com/install.html) (32-bit).
|
||||||
|
|
||||||
If you insist on Windows, use [**Cygwin**](http://cygwin.com/install.html) (32-bit).
|
In the installer, select the following packages: `make` `git` `gettext` `python` `python-setuptools`
|
||||||
|
|
||||||
Dependencies are downloaded in the installer rather than the command line.
|
Then get the most recent version of [**rgbds**](https://github.com/bentley/rgbds/releases/).
|
||||||
Select the following packages:
|
Put `rgbasm.exe`, `rgblink.exe` and `rgbfix.exe` in `C:\cygwin\usr\local\bin`.
|
||||||
* make
|
|
||||||
* git
|
|
||||||
* gettext
|
|
||||||
* python
|
|
||||||
* python-setuptools
|
|
||||||
|
|
||||||
The latest version of **rgbds** is [**0.2.2**](https://github.com/bentley/rgbds/releases/download/v0.2.2/rgbds-0.2.2-win32.zip). To install, put `rgbasm.exe`, `rgblink.exe` and `rgbfix.exe` in `C:\cygwin\usr\local\bin`.
|
In the **Cygwin terminal**:
|
||||||
|
|
||||||
Then set up the repository. In the **Cygwin terminal**:
|
|
||||||
|
|
||||||
git clone git://github.com/iimarckus/pokered.git
|
|
||||||
cd pokered
|
|
||||||
git submodule init
|
|
||||||
git submodule update
|
|
||||||
easy_install pypng
|
easy_install pypng
|
||||||
|
git clone --recursive git://github.com/iimarckus/pokered.git
|
||||||
To build:
|
cd pokered
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue