summaryrefslogtreecommitdiff
path: root/Ports
diff options
context:
space:
mode:
authorJelle Raaijmakers <jelle@gmta.nl>2022-01-17 18:11:21 +0100
committerLinus Groh <mail@linusgroh.de>2022-02-22 23:48:59 +0000
commite3d5a11d841bb817677c9daa608d0c4a0a8a25f8 (patch)
treee2317ae62364aad21030e1b5a93d56090872558d /Ports
parent6a3017625b477466c8b1b1dfa1f6d13814375ef9 (diff)
downloadserenity-e3d5a11d841bb817677c9daa608d0c4a0a8a25f8.zip
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.
Diffstat (limited to 'Ports')
-rwxr-xr-xPorts/scummvm/package.sh3
1 files changed, 2 insertions, 1 deletions
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"
)