Skip to content

Commit a18cca2

Browse files
ISSOtmRangi42avivace
authoredMay 8, 2024··
Split install instructions into separate pages (#60)
* Split install instructions into separate pages Also list "static bins" options where available, and clean up some wording. * Touch up wording of OS list Co-authored-by: Rangi <[email protected]> * Fix typo Co-authored-by: Rangi <[email protected]> * Improve wording of Linux page Co-authored-by: Rangi <[email protected]> * Integrate Sylvie's improvements Co-authored-by: Sylvie <[email protected]> * Add link back to "main" install page to sub-pages * Fix up install instructions more * Make the breakage disclaimer of `master` less scary The update pace has slowed down a lot anyway * Clean up documentation related to `master` * Prefer following links instead of clicking them * Simplify directions to install downloads * Use headings for different installation methods This delineates them much better, and also allows linking to individual methods much more easily! * Clarify availability of Homebrew install method * Make install docs into a separate "doc instance" Notably, this enables a sidebar, and automatic breadcrumbs. * Use markdown links in install instructions These are more stable, and converted+checked at compile time * Update install/linux.md Co-authored-by: Sylvie <[email protected]> * Update install/macos.md Co-authored-by: Sylvie <[email protected]> * Update install/source.md Co-authored-by: Sylvie <[email protected]> * Update install/windows.md Co-authored-by: Sylvie <[email protected]> * Recommend the use of WSL Co-authored-by: Sylvie <[email protected]> * final touches * macos: add note about homebrew on old OS --------- Co-authored-by: Rangi <[email protected]> Co-authored-by: Antonio Vivace <[email protected]>
1 parent f76ffcf commit a18cca2

File tree

10 files changed

+268
-186
lines changed

10 files changed

+268
-186
lines changed
 

‎docs/index.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
## What is `master`? {#master}
55

6-
`master` is the name of RGBDS' main development branch. It's usually employed as a version name to refer to the state of in-development RGBDS: it contains the latest changes as they are pushed, but for this reason it's very unstable.
6+
`master` is the name of RGBDS' main development branch.
7+
It's used to refer to "bleeding-edge" RGBDS, containing the latest changes as they are pushed.
78

89
### Pros and cons of `master` over releases
910

@@ -15,7 +16,7 @@ Pros:
1516

1617
Cons:
1718

18-
- Tested, but unstable, so expect things to break often
19+
- Tested, but less stable, so expect things to break occasionally
1920
- Must be compiled manually, unless you [use our CI](/install/master#using-our-ci)
2021
- Updated often
2122

‎docusaurus.config.js

+32-23
Original file line numberDiff line numberDiff line change
@@ -33,31 +33,9 @@ const config = {
3333
organizationName: "gbdev",
3434
projectName: "rgbds-www",
3535

36-
plugins: [
37-
[
38-
"@docusaurus/plugin-client-redirects",
39-
{
40-
redirects: [
41-
"gbz80.7",
42-
"rgbasm.1",
43-
"rgbasm.5",
44-
"rgbds.5",
45-
"rgbds.7",
46-
"rgbfix.1",
47-
"rgbgfx.1",
48-
"rgblink.1",
49-
"rgblink.5",
50-
].map((page) => {
51-
return { from: `/docs/${page}`, to: `/docs/${latestStable}/${page}` };
52-
}),
53-
},
54-
],
55-
"docusaurus-plugin-matomo",
56-
],
57-
5836
presets: [
5937
[
60-
"classic",
38+
"@docusaurus/preset-classic",
6139
/** @type {import('@docusaurus/preset-classic').Options} */
6240
{
6341
docs: {
@@ -81,6 +59,37 @@ const config = {
8159
],
8260
],
8361

62+
plugins: [
63+
[
64+
"@docusaurus/plugin-content-docs",
65+
{
66+
id: "install",
67+
path: "install",
68+
routeBasePath: "install",
69+
sidebarPath: "./installSidebars.js",
70+
}
71+
],
72+
[
73+
"@docusaurus/plugin-client-redirects",
74+
{
75+
redirects: [
76+
"gbz80.7",
77+
"rgbasm.1",
78+
"rgbasm.5",
79+
"rgbds.5",
80+
"rgbds.7",
81+
"rgbfix.1",
82+
"rgbgfx.1",
83+
"rgblink.1",
84+
"rgblink.5",
85+
].map((page) => {
86+
return { from: `/docs/${page}`, to: `/docs/${latestStable}/${page}` };
87+
}),
88+
},
89+
],
90+
"docusaurus-plugin-matomo",
91+
],
92+
8493
themeConfig:
8594
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
8695
({

‎install/index.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
sidebar_label: Available install methods
3+
---
4+
5+
# Installing RGBDS
6+
7+
Most people will want to use a stable release (the more recent the better).
8+
9+
These are the operating systems for which pre-built executables of recent releases of RGBDS are available:
10+
- [Linux](linux.md)
11+
- [macOS](macos.md)
12+
- [Windows](windows.md)
13+
14+
If none of these options fit your needs, you can [build from source](source.md).
15+
16+
### Docker
17+
18+
We distribute an [official container image for RGBDS](https://github.com/gbdev/rgbds/pkgs/container/rgbds).
19+
It contains the built executables *and* the build dependencies, in case you want to compile from source.
20+
21+
```bash
22+
docker pull ghcr.io/gbdev/rgbds:latest
23+
```
24+
25+
### Installing a development version
26+
27+
If you are willing to help us test new features, consider [using a development version](master.md).
28+
29+
### Managing multiple versions
30+
31+
If you need to frequently switch between different versions of RGBDS, consider using [rgbenv](https://github.com/gbdev/rgbenv), the RGBDS version manager.

‎install/linux.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
sidebar_label: Linux
3+
---
4+
5+
# Installing RGBDS on Linux
6+
7+
## Using your package manager
8+
9+
Check if RGBDS is available in your distribution's software center or package manager repositories.
10+
If a satisfactory version is available, it is a good idea to install from there.
11+
12+
## Using our pre-built binaries
13+
14+
1. Go the [latest release](https://github.com/gbdev/rgbds/releases/latest) (or pick [a specific version](https://github.com/gbdev/rgbds/releases))
15+
2. Under "Assets" at the bottom, download <code>rgbds-<var>&lt;version&gt;</var>-linux-x86_64.tar.xz</code> (for example, version 0.7.0 would have `rgbds-0.7.0-linux-x86_64.tar.xz`)
16+
3. Extract the .tar.xz file into a new directory, and run `install.sh` as root in that directory. E.g.:
17+
```console
18+
% mkdir rgbds
19+
% tar xf rgbds-0.7.0-linux-x86_64.tar.xz -C rgbds
20+
% cd rgbds
21+
% sudo ./install.sh
22+
```
23+
4. Check that RGBDS was correctly installed by running `rgbasm -V`.
24+
It should print out the version number you installed!
25+
26+
---
27+
28+
If none of these options are suitable to you, [build RGBDS from source](source.md).

‎install/macos.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
sidebar_label: macOS
3+
---
4+
5+
# Installing RGBDS on macOS
6+
7+
## Using the Homebrew package manager
8+
9+
On recent macOS major releases[^1], RGBDS is available on [Homebrew](https://brew.sh) as the [`rgbds` package](https://formulae.brew.sh/formula/rgbds).
10+
11+
```bash
12+
brew install rgbds
13+
```
14+
15+
Then you will be able to update RGBDS at any time by simply running `brew update` then `brew upgrade`!
16+
17+
You can also install the [`master` branch](/docs/master) by passing the `--HEAD` flag:
18+
```bash
19+
brew install rgbds --HEAD
20+
```
21+
22+
## Using our pre-built binaries
23+
24+
1. Go the [latest release](https://github.com/gbdev/rgbds/releases/latest) (or pick [a specific version](https://github.com/gbdev/rgbds/releases))
25+
2. Under "Assets" at the bottom, download <code>rgbds-<var>&lt;version&gt;</var>-macos-x86-64.zip</code> (for example, version 0.7.0 would have `rgbds-0.7.0-macos-x86-64.zip`).
26+
3. Extract the .zip file into a new directory, and run `install.sh` as root inside that directory.
27+
For example, you can do that with these Console commands:
28+
```console
29+
% unzip -d rgbds rgbds-0.7.0-macos-x86-64.zip
30+
% cd rgbds
31+
% sudo ./install.sh
32+
```
33+
4. Check that RGBDS was correctly installed by running `rgbasm -V`.
34+
It should print out the version number you installed!
35+
36+
---
37+
38+
If none of these options are suitable to you, [build RGBDS from source](source.md).
39+
40+
[^1]: Older macOS systems have been reported to compile for several days with Homebrew.

‎src/pages/install/master.md ‎install/master.md

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,22 @@
1+
---
2+
sidebar_label: Using a development version
3+
---
14

25
# Using RGBDS `master`
36

47
`master` is the name of RGBDS' main development branch.
58
Using a "master" version of RGBDS means using an in-development version: this means you get access to the newest features faster (and you help test them!), but it also means that they have undergone a little less testing.
69

710
We are very grateful to all who takes the time to use `master` versions; all of you help make the releases better for everyone.
8-
But, if you don't want to, you can [go back to the install page](/install).
911

1012
## Using a package manager
1113

12-
Your package manager *may* have a `master` version of RGBDS available, such as Arch's [`rgbds-git` AUR package](https://aur.archlinux.org/packages/rgbds-git).
14+
Your package manager *may* have a `master` version of RGBDS available, such as Arch Linux [`rgbds-git` AUR package](https://aur.archlinux.org/packages/rgbds-git).
1315
If that is the case, it is recommended to use that, as it should be simpler and integrate better with the rest of your system.
1416

15-
As this is highly OS-specific, we cannot provide any generic instructions.
16-
Sorry!
17-
1817
## Building it yourself
1918

20-
:::tip
21-
22-
If your package manager is not an option, this is the preferred way.
23-
Unless you are on Windows, in which case consider [using our CI](#using-our-ci) instead.
24-
25-
:::
26-
27-
[Build the source](/install/source) as usual, but replace step 1 (getting the sources) with getting the `master` repo instead.
19+
[Build the source](source.md) as usual, but replace step 1 (getting the sources) with getting the `master` repo instead.
2820
The recommended way is to clone the repo (see [GitHub's help on it](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository) if you have trouble), but you can also download the repo as ZIP.
2921

3022
Then, follow the rest of the instructions to build from source.

‎src/pages/install/source.md ‎install/source.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
---
2+
sidebar_label: Building RGBDS yourself
3+
---
14

25
import Tabs from '@theme/Tabs';
36
import TabItem from '@theme/TabItem';
@@ -24,11 +27,9 @@ You first need to get the source files to be compiled, using one of the methods
2427
<Tabs>
2528
<TabItem value="snapshot" label="Downloading source snapshots">
2629

27-
1. [Pick a release](/docs).
28-
2. Under the "GitHub links" heading, follow the `release page` link.
29-
3. Go to "**Assets**" at the bottom of that page.
30-
4. Download any of the last three listed files (`rgbds-<version>.tar.gz`, "Source code (`zip`)", or "Source code (`tar.gz`)").
31-
5. Extract ("unzip") the file.
30+
1. Go the [latest release](https://github.com/gbdev/rgbds/releases/latest) (or pick [a specific version](https://github.com/gbdev/rgbds/releases))
31+
2. Under "Assets" at the bottom, download any of the last three listed files (<code>rgbds-<var>&lt;version&gt;</var>.tar.gz</code>, "Source code (`zip`)", or "Source code (`tar.gz`)").
32+
3. Extract ("unzip") the file.
3233

3334
</TabItem>
3435
<TabItem value="git" label="Using Git">

‎install/windows.md

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
---
2+
sidebar_label: Windows
3+
---
4+
5+
import Tabs from '@theme/Tabs';
6+
import TabItem from '@theme/TabItem';
7+
8+
# Installing RGBDS on Windows
9+
10+
The install instructions are a bit different depending on the environment in which you wish to use RGBDS.
11+
12+
<Tabs>
13+
<TabItem value="wsl" label="WSL">
14+
15+
Using WSL is recommended if your version of Windows supports it (which Windows 10 and 11 do).
16+
17+
Please refer to [the install instructions](linux.md) for your WSL's running Linux distribution.
18+
You can check what your WSL distribution is by running `wsl -l -v` in the Command Prompt.
19+
(The default Linux distribution on WSL is Ubuntu, whose package manager is `apt`.)
20+
21+
</TabItem>
22+
<TabItem value="cygwin" label="Cygwin / MSYS2">
23+
24+
1. Go the [latest release](https://github.com/gbdev/rgbds/releases/latest) (or pick a specific version from [the list](https://github.com/gbdev/rgbds/releases)).
25+
2. Under "Assets" at the bottom, download either <code>rgbds-<var>&lt;version&gt;</var>-win32.zip</code> (for 32-bit Windows) or <code>rgbds-<var>&lt;version&gt;</var>-win64.zip</code> (for 64-bit Windows).
26+
(For example, version 0.7.0 for 64-bit Windows would have `rgbds-0.7.0-win64.zip`).
27+
3. Unzip the .zip file.
28+
It should give you the RGBDS `.exe` files and a couple of `.dll` files.
29+
4. Copy all of those `.exe` and `.dll` files to the `/usr/local/bin` directory of your Cygwin/MSYS2 installation.
30+
(You can learn its equivalent Windows path by running `cygpath -w /usr/local/bin` in the Cygwin terminal.)
31+
32+
:::caution
33+
34+
Do not put them in a subdirectory (e.g. `/usr/local/bin/rgbds/`)!
35+
This would not work.
36+
37+
:::
38+
39+
After that, you should be able to use RGBDS from within the Cygwin/MSYS2 terminal, which you can confirm by running `rgbasm -V`.
40+
41+
If `rgbasm -V` doesn't work, check that `/usr/local/bin` is listed in your Cygwin/MSYS2 `PATH` (run `echo $PATH` to check).
42+
If it isn't listed, you must add it (e.g. run `echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bashrc`, then close your Cygwin terminal and open a new one).
43+
44+
:::tip
45+
46+
If you can choose between using Cygwin or MSYS2, be advised that Cygwin is slower and has been reported to cause a bit of trouble to some.
47+
48+
:::
49+
50+
</TabItem>
51+
<TabItem value="win32" label="None of those">
52+
53+
1. Go the [latest release](https://github.com/gbdev/rgbds/releases/latest) (or pick a specific version from [the list](https://github.com/gbdev/rgbds/releases))
54+
2. Under "Assets" at the bottom, download either <code>rgbds-<var>&lt;version&gt;</var>-win32.zip</code> (for 32-bit Windows) or <code>rgbds-<var>&lt;version&gt;</var>-win64.zip</code> (for 64-bit Windows).
55+
(For example, version 0.7.0 for 64-bit Windows would have `rgbds-0.7.0-win64.zip`).
56+
3. Unzip the .zip file.
57+
It should give you the RGBDS `.exe` files and a couple of `.dll` files.
58+
4. Either:
59+
- ...put all of the files in a directory, then add that directory to Windows' `PATH`.
60+
This will *permanently* allow you to use RGBDS *from any directory*.
61+
62+
<Tabs>
63+
<TabItem value="gui" label="Graphically">
64+
65+
1. Open the Environment Variables dialog for your account.
66+
You can do this by either:
67+
- ...typing "edit environment variables for your account" in the Start menu's Search box and clicking the Control Panel item that's found.
68+
- ...opening the Control Panel, clicking its "User Accounts" item, clicking the "User Accounts" heading in that item, and clicking "Change my environment variables" in the sidebar.
69+
2. Click the "Path" line in the **top** panel to highlight it.
70+
6. Click "Edit..." to open the "Edit environment variable" dialog for "Path".
71+
7. Click "Browse...", select the folder that the RGBDS files are in, and click OK.
72+
8. The folder should be added to the bottom of the "Path" list.
73+
Make sure that the new entry (which should be highlighted) is at the bottom of the list; if not, click on "Move Down" until it is.
74+
9. Click "OK" to finish the "Edit environment variable" dialog, and again for the "Environment Variables" dialog.
75+
76+
</TabItem>
77+
<TabItem value="cmd" label="Command Prompt">
78+
79+
Run the command <code>setx PATH "%PATH%<var>&lt;rgbds_path&gt;</var>;"</code>, replacing <code><var>&lt;rgbds_path&gt;</var></code> with the path to the directory that contains `rgbasm.exe`, `rgblink.exe`, etc.
80+
Then close the Command Prompt and open a new one for the changes to take effect.
81+
82+
If you only want to modify the `PATH` temporarily, instead of the permanent [`setx`](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/setx) command, you can use the **temporary** [`set`](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/set_1).
83+
84+
</TabItem>
85+
<TabItem value="pwsh" label="PowerShell">
86+
87+
Run the command <code>setx PATH \$\{Env:PATH\}<var>&lt;rgbds_path&gt;</var>;</code>, replacing <code><var>&lt;rgbds_path&gt;</var></code> with the path to the directory that contains `rgbasm.exe`, `rgblink.exe`, etc.
88+
Then close the PowerShell window and open a new one for the changes to take effect.
89+
90+
If you only want to modify the `PATH` temporarily, instead of the permanent [`setx`](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/setx) command, you can use the **temporary** [`set`](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/set_1).
91+
92+
</TabItem>
93+
</Tabs>
94+
95+
- ...or put all of the files in your project's directory.
96+
- ...or put all of the files in a directory already in the `PATH`.
97+
5. RGBDS can now be used from your favorite command line (most likely the Command prompt or PowerShell).
98+
You can test it by running `rgbasm -V`, which should print the version you installed!
99+
100+
</TabItem>
101+
</Tabs>

‎installSidebars.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// @ts-check
2+
3+
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
4+
const sidebars = {
5+
nav: [
6+
"index",
7+
{
8+
type: "category",
9+
label: "Supported OSes",
10+
collapsible: false,
11+
items: [
12+
"linux",
13+
"macos",
14+
"windows",
15+
],
16+
},
17+
"source",
18+
"master",
19+
],
20+
};
21+
22+
module.exports = sidebars;

‎src/pages/install/index.md

-143
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.