From e3d5a11d841bb817677c9daa608d0c4a0a8a25f8 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Mon, 17 Jan 2022 18:11:21 +0100 Subject: [PATCH] Ports: Enable `monkey4` engine for ScummVM This depends on both the `libmpeg2` and `libmad` ports. Since `monkey4` is currently an experimental engine in ScummVM, we need to explicitly enable it during configuration. --- Ports/scummvm/package.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Ports/scummvm/package.sh b/Ports/scummvm/package.sh index 42acc0dc3a..fe2856015a 100755 --- a/Ports/scummvm/package.sh +++ b/Ports/scummvm/package.sh @@ -4,9 +4,10 @@ useconfigure="true" version="2.5.1" files="https://downloads.scummvm.org/frs/scummvm/${version}/scummvm-${version}.tar.xz scummvm-${version}.tar.xz 9fd8db38e4456144bf8c34dacdf7f204e75f18e8e448ec01ce08ce826a035f01" auth_type=sha256 -depends=("freetype" "libiconv" "libjpeg" "libpng" "libtheora" "SDL2") +depends=("freetype" "libiconv" "libjpeg" "libmad" "libmpeg2" "libpng" "libtheora" "SDL2") configopts=( "--enable-c++11" + "--enable-engine=monkey4" "--enable-optimizations" "--with-sdl-prefix=${SERENITY_INSTALL_ROOT}/usr/local" )