https://github.com/zerasul/dockerretro
DockerFiles for retro development
https://github.com/zerasul/dockerretro
cross-compile devkitpro docker gba nds retro sdl2
Last synced: 10 months ago
JSON representation
DockerFiles for retro development
- Host: GitHub
- URL: https://github.com/zerasul/dockerretro
- Owner: zerasul
- Created: 2021-12-14T21:33:29.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-23T16:56:43.000Z (almost 4 years ago)
- Last Synced: 2023-08-06T12:21:22.092Z (over 2 years ago)
- Topics: cross-compile, devkitpro, docker, gba, nds, retro, sdl2
- Language: Dockerfile
- Homepage:
- Size: 6.84 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Retro Docker files
This repo have some Dockerfiles with information for Create a development environment for [Devkitpro](https://devkitpro.org/) ARM Development (for GameBoy Advance and Nintendo DS) or SDL2 Linux Development.
This is only for demostration pruposes.
You have 3 folders:
* GBA: create a docker image with devkitpro libraries and tools and generate a volume for compile and generate gba roms.
* NDS: create a docker image with devkitpro libraries and tools and generate a volume for compile and generate nds roms.
* SDL: Create a docker image with SDL2 for linux or using cross compiling with mingw32.
## Build image
```bash
docker build -t .
```
## Compile and generate Rom
* gba
```bash
docker run --rm -v :/src/gba gba
```
* nds
```bash
docker run --rm -v :/src/nds nds
```
* sdl
For Linux
```bash
docker run --rm -v :/src/sdl2 sdl make all
```
For Windows
```bash
docker run --rm -v :/src/sdl2 sdl make game.zip
```
You can find a template or example in the next repositories.
* gba: [https://github.com/devkitPro/gba-examples](https://github.com/devkitPro/gba-examples)
* nds: [https://github.com/LaJaqueria/nds-examples](https://github.com/LaJaqueria/nds-examples)
* sdl: [https://github.com/emiliollbb/taller_sdl](https://github.com/emiliollbb/taller_sdl)