serenity/Ports/rvvm/package.sh
LekKit bb5ad12e43 Ports: Update rvvm to 0.6
- New upstream stable version is available
- Networking is now fully stable and enabled by default
- SDL2 backend is now available alongside SDL1, so switch to it
- Fixed a name collision of PAGE_SIZE with Serenity headers
- Disable threaded IO on Serenity for now
- Many other changes and fixes
- See https://github.com/LekKit/RVVM/releases/tag/v0.6 for more
2024-03-23 13:00:44 +01:00

19 lines
437 B
Bash
Executable file

#!/usr/bin/env -S bash ../.port_include.sh
port='rvvm'
version='0.6'
archive_hash='97e98c95d8785438758b81fb5c695b8eafb564502c6af7f52555b056e3bb7d7a'
files=(
"https://github.com/LekKit/RVVM/archive/v${version}.tar.gz#${archive_hash}"
)
workdir="RVVM-${version}"
depends=('SDL2')
build_opts=(
'GIT_COMMIT=f937fd8'
'OS=SerenityOS'
'USE_SDL=2'
)
makeopts+=("${build_opts[@]}" 'all' 'lib')
installopts+=("${build_opts[@]}")