mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
c07f91474d
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
33 lines
959 B
Bash
Executable File
33 lines
959 B
Bash
Executable File
#!/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 chmod 644 ${workdir}/*
|
|
run_nocd cp ${workdir}/MYSTHOUS.DSK ${target_dir}
|
|
}
|