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

Ports: Add RVVM port

This commit is contained in:
LekKit 2023-04-22 00:46:02 +03:00 committed by Jelle Raaijmakers
parent ac435f914c
commit 12730cefce
2 changed files with 17 additions and 0 deletions

16
Ports/rvvm/package.sh Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='rvvm'
version='0.5'
archive_hash=3a1dbb91ad04f068078bc6c6c27cc5792eebc111907cb5a14bde158fe6e757c9
files="https://github.com/LekKit/RVVM/archive/v$version.tar.gz rvvm.tar.gz $archive_hash"
auth_type='sha256'
workdir="RVVM-$version"
depends=('sdl12-compat')
build() {
run make OS=SerenityOS USE_SDL=1 USE_NET=1 GIT_COMMIT=76796ba all lib
}
install() {
run make OS=SerenityOS USE_SDL=1 USE_NET=1 GIT_COMMIT=76796ba DESTDIR="${DESTDIR}" install
}