Skip to content

Commit 6aa2909

Browse files
authored
add quickstart for Debian in readme
Should address #14 even though it's not "quite" a one-liner, since it also covers installing the dependencies.
1 parent a75dc14 commit 6aa2909

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ This is a version manager for [RGBDS](https://github.com/gbdev/rgbds). It is a p
44

55
\* Bash script, at the moment. Compatibility with other shells is not guaranteed.
66

7+
## Quickstart (Debian)
8+
```sh
9+
sudo apt install -y libpng-dev pkg-config build-essential bison git curl
10+
sudo sh -c 'curl https://raw.githubusercontent.com/gbdev/rgbenv/master/rgbenv > /usr/local/bin/rgbenv'
11+
sudo chmod +x /usr/local/bin/rgbenv
12+
yes | rgbenv install 0.7.0
13+
rgbenv use 0.7.0
14+
echo 'export PATH=$HOME/.local/share/rgbenv/default/bin:$PATH' >> .bashrc
15+
source .bashrc
16+
17+
rgbasm -V
18+
```
19+
720
## What does it do?
821

922
* Installs or uninstalls a specific version of the RGBDS suite.

0 commit comments

Comments
 (0)