mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
rgbds has moved from rednex to gbdev
This commit is contained in:
parent
59adc78747
commit
9c80f4ebd3
@ -5,7 +5,7 @@ os:
|
|||||||
install:
|
install:
|
||||||
- |-
|
- |-
|
||||||
( cd
|
( cd
|
||||||
git clone -b v0.4.1 --depth=1 https://github.com/rednex/rgbds
|
git clone -b v0.4.1 --depth=1 https://github.com/gbdev/rgbds
|
||||||
sudo make -C rgbds install
|
sudo make -C rgbds install
|
||||||
rm -rf rgbds
|
rm -rf rgbds
|
||||||
)
|
)
|
||||||
|
2
FAQ.md
2
FAQ.md
@ -107,7 +107,7 @@ If your code is on GitHub, you can [link to specific lines][snippethelp]. Put "`
|
|||||||
Try asking on Discord or IRC (see [README.md](README.md)).
|
Try asking on Discord or IRC (see [README.md](README.md)).
|
||||||
|
|
||||||
[cygwin]: https://cygwin.com/install.html
|
[cygwin]: https://cygwin.com/install.html
|
||||||
[rgbds]: https://github.com/rednex/rgbds/releases
|
[rgbds]: https://github.com/gbdev/rgbds/releases
|
||||||
[polished-map]: https://github.com/Rangi42/polished-map
|
[polished-map]: https://github.com/Rangi42/polished-map
|
||||||
[gimp]: https://www.gimp.org/
|
[gimp]: https://www.gimp.org/
|
||||||
[paintdotnet]: https://www.getpaint.net/
|
[paintdotnet]: https://www.getpaint.net/
|
||||||
|
12
INSTALL.md
12
INSTALL.md
@ -1,6 +1,6 @@
|
|||||||
# Instructions
|
# Instructions
|
||||||
|
|
||||||
These instructions explain how to set up the tools required to build **pokecrystal**, including [**rgbds**](https://github.com/rednex/rgbds), which assembles the source files into a ROM.
|
These instructions explain how to set up the tools required to build **pokecrystal**, including [**rgbds**](https://github.com/gbdev/rgbds), which assembles the source files into a ROM.
|
||||||
|
|
||||||
If you run into trouble, ask for help on IRC or Discord (see [README.md](README.md)).
|
If you run into trouble, ask for help on IRC or Discord (see [README.md](README.md)).
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ Run setup and leave the default settings. At the "**Select Packages**" step, cho
|
|||||||
|
|
||||||
Double click on the text that says "**Skip**" next to each package to select the most recent version to install.
|
Double click on the text that says "**Skip**" next to each package to select the most recent version to install.
|
||||||
|
|
||||||
Then download [**rgbds**](https://github.com/rednex/rgbds/releases/): the latest **win64.zip** or **win32.zip** release. Extract it and put all the `exe` and `dll` files individually in **C:\cygwin64\usr\local\bin**.
|
Then download [**rgbds**](https://github.com/gbdev/rgbds/releases/): the latest **win64.zip** or **win32.zip** release. Extract it and put all the `exe` and `dll` files individually in **C:\cygwin64\usr\local\bin**.
|
||||||
|
|
||||||
**Note: If you already have an older rgbds, you will need to update to 0.4.1.** Ignore this if you have never installed rgbds before. If a version newer than 0.4.1 does not work, try downloading 0.4.1.
|
**Note: If you already have an older rgbds, you will need to update to 0.4.1.** Ignore this if you have never installed rgbds before. If a version newer than 0.4.1 does not work, try downloading 0.4.1.
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ To install **rgbds**:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo apt-get install pkg-config flex bison libpng-dev
|
sudo apt-get install pkg-config flex bison libpng-dev
|
||||||
git clone -b v0.4.1 --depth=1 https://github.com/rednex/rgbds
|
git clone -b v0.4.1 --depth=1 https://github.com/gbdev/rgbds
|
||||||
sudo make -C rgbds install
|
sudo make -C rgbds install
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -102,7 +102,7 @@ To install **rgbds**:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo zypper install pkg-config flex bison libpng16-devel
|
sudo zypper install pkg-config flex bison libpng16-devel
|
||||||
git clone -b v0.4.1 --depth=1 https://github.com/rednex/rgbds
|
git clone -b v0.4.1 --depth=1 https://github.com/gbdev/rgbds
|
||||||
sudo make -C rgbds install
|
sudo make -C rgbds install
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -118,7 +118,7 @@ If you want to compile and install **rgbds** manually instead of using the Arch
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo pacman -S pkg-config flex bison libpng
|
sudo pacman -S pkg-config flex bison libpng
|
||||||
git clone -b v0.4.1 --depth=1 https://github.com/rednex/rgbds
|
git clone -b v0.4.1 --depth=1 https://github.com/gbdev/rgbds
|
||||||
sudo make -C rgbds install
|
sudo make -C rgbds install
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -155,7 +155,7 @@ If `rgbds` is not available, you'll also need these:
|
|||||||
To install **rgbds**:
|
To install **rgbds**:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone -b v0.4.1 --depth=1 https://github.com/rednex/rgbds
|
git clone -b v0.4.1 --depth=1 https://github.com/gbdev/rgbds
|
||||||
sudo make -C rgbds install
|
sudo make -C rgbds install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user