diff options
author | yenatch <yenatch@gmail.com> | 2017-12-05 23:50:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-05 23:50:08 -0500 |
commit | fb7d588d4729f55c4bf74a7ec42b2c9d1bec38b5 (patch) | |
tree | 98f8b06d09e2e6032db155a285ad24e17c354bdc | |
parent | 3ede05f2b7dfa8e05f5376dc9f383ffbadd4d3d1 (diff) |
both rgbds and pokegold repos moved
- gettext, libsasl2-3 and ca-certificates are no longer needed
-rw-r--r-- | INSTALL.md | 23 |
1 files changed, 10 insertions, 13 deletions
@@ -6,9 +6,10 @@ If you run into trouble, ask on irc ([**freenode#pret**](https://kiwiirc.com/cli # NOTICE -Currently the repository requires prebuilt copies of Pokémon Gold and Pokémon Silver. You can find their MD5sums in README.md. Due to legal issues, we are unable to provide direct links to these ROMs, but a quick Google search should point you in the right direction. +Currently building requires that you provide a base ROM for each version. You can find the md5 for each version in [README.md](README.md) to confirm you have the right one. + +You will need to rename the Gold ROM to **baserom-gold.gbc** and the Silver ROM to **baserom-silver.gbc** in order to build the respective version. -You will need to rename the GOLD ROM to **baserom-gold.gbc** and the SILVER ROM to **baserom-silver.gbc** in order to build the respective version of the game. # Linux @@ -17,12 +18,12 @@ Python 2.7 is required. ```bash sudo apt-get install make gcc bison git python -git clone https://github.com/bentley/rgbds +git clone https://github.com/rednex/rgbds cd rgbds sudo make install cd .. -git clone --recursive https://github.com/pikalaxalt/pokegold +git clone --recursive https://github.com/pret/pokegold cd pokegold ``` @@ -52,12 +53,12 @@ In **Terminal**, run: ```bash xcode-select --install -git clone https://github.com/bentley/rgbds +git clone https://github.com/rednex/rgbds cd rgbds sudo make install cd .. -git clone --recursive https://github.com/pikalaxalt/pokegold +git clone --recursive https://github.com/pret/pokegold cd pokegold ``` @@ -84,16 +85,16 @@ make To build on Windows, install [**Cygwin**](http://cygwin.com/install.html) with the default settings. -In the installer, select the following packages: `make` `git` `python` `gettext` +In the installer, select the following packages: `make` `git` `python` -Then get the most recent version of [**rgbds**](https://github.com/bentley/rgbds/releases/). +Then get the most recent version of [**rgbds**](https://github.com/rednex/rgbds/releases/). Extract the archive and put `rgbasm.exe`, `rgblink.exe` and `rgbfix.exe` in `C:\cygwin64\usr\local\bin`. In the **Cygwin terminal**: ```bash -git clone --recursive https://github.com/pikalaxalt/pokegold +git clone --recursive https://github.com/pret/pokegold cd pokegold ``` @@ -114,7 +115,3 @@ To build both ROMs: ```bash make ``` - -## notes - -- If `gettext` no longer exists, grab `libsasl2-3` `ca-certificates`. |