From 35eeb1686173586f7d843782c1c231c5c5a7a4e5 Mon Sep 17 00:00:00 2001 From: The Void <9028176+etdv-thevoid@users.noreply.github.com> Date: Sun, 14 Apr 2024 11:19:05 -0500 Subject: [PATCH] Update INSTALL.md --- INSTALL.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index a5c7efb5a..32444de47 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,6 +1,6 @@ # Instructions -These instructions explain how to set up the tools required to build **pokered**, including [**rgbds**](https://github.com/gbdev/rgbds), which assembles the source files into a ROM. +These instructions explain how to set up the tools required to build **pokered-gbc**, 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)). @@ -15,9 +15,9 @@ Update WSL's software before continuing. If you chose Debian, Ubuntu, or another apt-get update && apt-get upgrade ``` -WSL has its own file system that's not accessible from Windows, but Windows files *are* accessible from WSL. So you're going to want to install pokered within Windows. You'll have to change the **current working directory** every time you open WSL. +WSL has its own file system that's not accessible from Windows, but Windows files *are* accessible from WSL. So you're going to want to install pokered-gbc within Windows. You'll have to change the **current working directory** every time you open WSL. -For example, if you want to store pokered in **C:\Users\\*\*\Desktop**, enter this command: +For example, if you want to store pokered-gbc in **C:\Users\\*\*\Desktop**, enter this command: ```bash cd /mnt/c/Users//Desktop @@ -48,9 +48,9 @@ Then follow the [**rgbds** install instructions](https://rgbds.gbdev.io/install# Now open the **Cygwin terminal** and enter the following commands. -Cygwin has its own file system that's within Windows, at **C:\cygwin64\home\\*\***. If you don't want to store pokered there, you'll have to change the **current working directory** every time you open Cygwin. +Cygwin has its own file system that's within Windows, at **C:\cygwin64\home\\*\***. If you don't want to store pokered-gbc there, you'll have to change the **current working directory** every time you open Cygwin. -For example, if you want to store pokered in **C:\Users\\*\*\Desktop**: +For example, if you want to store pokered-gbc in **C:\Users\\*\*\Desktop**: ```bash cd /cygdrive/c/Users//Desktop @@ -58,7 +58,7 @@ cd /cygdrive/c/Users//Desktop (The Windows `C:\` drive is called `/cygdrive/c/` in Cygwin. Replace *\* in the example path with your username.) -Now you're ready to [build **pokered**](#build-pokered). +Now you're ready to [build **pokered-gbc**](#build-pokered-gbc). ## macOS @@ -69,7 +69,7 @@ Open **Terminal** and prepare to enter commands. Then follow the [**rgbds** instructions](https://rgbds.gbdev.io/install#pre-built) for macOS to install **rgbds 0.6.1**. -Now you're ready to [build **pokered**](#build-pokered). +Now you're ready to [build **pokered-gbc**](#build-pokered-gbc). ## Linux @@ -78,7 +78,7 @@ Open **Terminal** and enter the following commands, depending on which distro yo ### Debian or Ubuntu -To install the software required for **pokered**: +To install the software required for **pokered-gbc**: ```bash sudo apt-get install make gcc git @@ -88,7 +88,7 @@ Then follow the [**rgbds** instructions](https://rgbds.gbdev.io/install#building ### OpenSUSE -To install the software required for **pokered**: +To install the software required for **pokered-gbc**: ```bash sudo zypper install make gcc git @@ -98,7 +98,7 @@ Then follow the [**rgbds** instructions](https://rgbds.gbdev.io/install#building ### Arch Linux -To install the software required for **pokered**: +To install the software required for **pokered-gbc**: ```bash sudo pacman -S make gcc git rgbds @@ -108,7 +108,7 @@ If you want to compile and install **rgbds** yourself instead, then follow the [ ### Termux -To install the software required for **pokered**: +To install the software required for **pokered-gbc**: ```bash sudo apt install make clang git sed @@ -133,16 +133,16 @@ If your distro is not listed here, try to find the required software in its repo If `rgbds` is not available, you'll need to follow the [**rgbds** instructions](https://rgbds.gbdev.io/install#building-from-source) to build **rgbds 0.6.1** from source. -Now you're ready to [build **pokered**](#build-pokered). +Now you're ready to [build **pokered-gbc**](#build-pokered-gbc). -## Build pokered +## Build pokered-gbc -To download the **pokered** source files: +To download the **pokered-gbc** source files: ```bash -git clone https://github.com/pret/pokered -cd pokered +git clone https://github.com/dannye/pokered-gbc +cd pokered-gbc ``` To build **pokered.gbc** and **pokeblue.gbc**: @@ -153,7 +153,7 @@ make ### Build with a local rgbds version -If you have different projects that require different versions of `rgbds`, it might not be convenient to install rgbds 0.6.1 globally. Instead, you can put its files in a directory within pokered, such as `pokered/rgbds-0.6.1/`. Then specify it when you run `make`: +If you have different projects that require different versions of `rgbds`, it might not be convenient to install rgbds 0.6.1 globally. Instead, you can put its files in a directory within pokered-gbc, such as `pokered-gbc/rgbds-0.6.1/`. Then specify it when you run `make`: ```bash make RGBDS=rgbds-0.6.1/