Skip to content

Commit

Permalink
add quickstart for Debian in readme
Browse files Browse the repository at this point in the history
Should address #14 even though it's not "quite" a one-liner, since it also covers installing the dependencies.
  • Loading branch information
ZoomTen authored and avivace committed Feb 17, 2024
1 parent ac26366 commit f4293e4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ This is a version manager for [RGBDS](https://github.com/gbdev/rgbds). It is a p

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

## Quickstart (Debian)
```sh
sudo apt install -y libpng-dev pkg-config build-essential bison git curl
sudo sh -c 'curl https://raw.githubusercontent.com/gbdev/rgbenv/master/rgbenv > /usr/local/bin/rgbenv'
sudo chmod +x /usr/local/bin/rgbenv
yes | rgbenv install 0.7.0
rgbenv use 0.7.0
echo 'export PATH=$HOME/.local/share/rgbenv/default/bin:$PATH' >> .bashrc
source .bashrc

rgbasm -V
```

## What does it do?

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

0 comments on commit f4293e4

Please sign in to comment.