1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 23:17:46 +00:00

Ports: Add Hatari Atari ST/STE/TT/Falcon emulator (#5812)

This commit is contained in:
Dan MacDonald 2021-03-16 20:53:13 +00:00 committed by GitHub
parent 211031e4f4
commit 3dfa3d2d9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1272 additions and 0 deletions

17
Ports/hatari/package.sh Executable file
View file

@ -0,0 +1,17 @@
#!/bin/bash ../.port_include.sh
port=hatari
useconfigure=true
version=2.4.0-devel
depends="SDL2 zlib"
commit=353379e1f8a847cc0e284541d2b40fd49d175d22
workdir="${port}-${commit}"
configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMakeToolchain.txt"
files="https://github.com/hatari/hatari/archive/${commit}.tar.gz ${commit}.tar.gz"
configure() {
run cmake $configopts
}
install() {
run make install
}