diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 9da58124fe..476a9c449a 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -85,6 +85,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`links`](links/) | Links web browser | 2.22 | http://links.twibright.com/ | | [`llvm`](llvm/) | LLVM | 12.0.0 | http://llvm.org/ | | [`lua`](lua/) | Lua | 5.3.5 | https://www.lua.org/ | +| [`lure`](lure/) | Lure of the Temptress | 1.1 | https://www.scummvm.org/games/#games-lure | | [`m4`](m4/) | GNU M4 | 1.4.9 | https://www.gnu.org/software/m4/ | | [`make`](make/) | GNU make | 4.3 | https://www.gnu.org/software/make/ | | [`mandoc`](mandoc/) | mandoc | 1.14.5 | https://mandoc.bsd.lv/ | diff --git a/Ports/lure/package.sh b/Ports/lure/package.sh new file mode 100755 index 0000000000..9f44c4932b --- /dev/null +++ b/Ports/lure/package.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port=lure +version="1.1" +files="https://downloads.scummvm.org/frs/extras/Lure%20of%20the%20Temptress/lure-1.1.zip ${port}-${version}.zip f3178245a1483da1168c3a11e70b65d33c389f1f5df63d4f3a356886c1890108" +auth_type=sha256 +depends="scummvm" +workdir="lure" + +resource_path="/usr/local/share/games/${port}-${version}" + +launcher_name="Lure of the Temptress" +launcher_category=Games +launcher_command="/usr/local/bin/scummvm --path=${resource_path} lure" + +build() { + : +} + +install() { + target_dir="${SERENITY_INSTALL_ROOT}${resource_path}" + run_nocd mkdir -p ${target_dir} + run_nocd cp ${workdir}/* ${target_dir} +}