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

Ports: Add ScummVM game Hi-Res Adventure #1: Mystery House

This commit is contained in:
Kenneth Myhra 2021-07-20 07:43:12 -07:00 committed by Gunnar Beutner
parent bcd96df2ac
commit 281cff7845
2 changed files with 32 additions and 0 deletions

31
Ports/mysthous/package.sh Executable file
View file

@ -0,0 +1,31 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=mysthous
version="1.0"
files="https://downloads.scummvm.org/frs/extras/Mystery%20House/MYSTHOUS.zip ${port}-${version}.zip ada412228a149394489b28c6c7f9ebab0722b52e04732fd0aa22949673cfa3a0"
auth_type=sha256
depends="scummvm"
resource_path="/usr/local/share/games/${port}-${version}"
launcher_name="Hi-Res Adventure #1: Mystery House"
launcher_category=Games
launcher_command="/usr/local/bin/scummvm --path=${resource_path} hires1-apple2"
build() {
:
}
pre_fetch() {
run_nocd mkdir -p ${workdir}
}
post_fetch() {
run_nocd rsync -a ./* ${workdir} --exclude=${workdir} --exclude=package.sh --exclude=${port}-${version}.zip --remove-source-files
run_nocd find . -depth -type d -empty -delete
}
install() {
target_dir="${SERENITY_INSTALL_ROOT}${resource_path}"
run_nocd mkdir -p ${target_dir}
run_nocd cp ${workdir}/MYSTHOUS.DSK ${target_dir}
}