1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 00:37:35 +00:00

Ports: Add Genemu

This is a Basic Genesis / MegaDrive Emulator, that only requires
SDL2 to run it.

Usage: genemu /path/to/game.bin
This commit is contained in:
aabajyan 2021-03-07 22:30:13 +04:00 committed by Andreas Kling
parent 368f78d03c
commit 0dfbc2c702
3 changed files with 129 additions and 0 deletions

17
Ports/genemu/package.sh Normal file
View file

@ -0,0 +1,17 @@
#!/usr/bin/env -S bash ../.port_include.sh
port="genemu"
version="${port}-git"
workdir="${port}-master"
useconfigure=true
files="https://github.com/rasky/genemu/archive/master.tar.gz ${version}.tar.gz"
configopts="-DCMAKE_TOOLCHAIN_FILE=${SERENITY_ROOT}/Toolchain/CMakeToolchain.txt"
depends="SDL2"
configure() {
run cmake ${configopts}
}
install() {
run make install
}