Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(install): Added instructions for fedora #1931

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,26 @@ Then proceed to [Choosing where to store pokeemerald (Linux)](#choosing-where-to
> [install devkitARM on Arch Linux](#installing-devkitarm-on-arch-linux).
</details>

### Fedora
Install the following packages:

```
sudo dnf install gcc g++ make git libpng-dev
```

Then install `devkitPro` [here](https://devkitpro.org/wiki/devkitPro_pacman) simply follow the instructions. Note: When you are asked to configure pacman, simply ignore the warning (it's in red) and proceed anyways.

Finally, sync the repositories and install `gba-dev`. Just press enter to install everything.

```bash
sudo pacman -Sy
sudo pacman -S gba-dev
```

It is very important that you sync the `devkitPro` repositories, otherwise you won't be able to install `gba-dev`. When all goes well, proceed to the [Installation](#installation) section.

### Other distributions

_(Specific instructions for other distributions would be greatly appreciated!)_

1. Try to find the required software in its repositories:
Expand Down