diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2021-10-17 17:07:01 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-28 00:23:30 +0200 |
commit | 59b2bac3a53a5b7605fc85d10b307147f1702635 (patch) | |
tree | ab26372799228ba9d7e45ebbb3f9311bd3a150d8 /Ports/scummvm/package.sh | |
parent | c6247fe414d570df926c8acf46586f8c69ce04e7 (diff) | |
download | serenity-59b2bac3a53a5b7605fc85d10b307147f1702635.zip |
Ports: Update ScummVM to 2.5.0
Diffstat (limited to 'Ports/scummvm/package.sh')
-rwxr-xr-x | Ports/scummvm/package.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ports/scummvm/package.sh b/Ports/scummvm/package.sh index a1f9c8e3b4..dce2b079eb 100755 --- a/Ports/scummvm/package.sh +++ b/Ports/scummvm/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port=scummvm useconfigure="true" -version="2.2.0" -files="https://downloads.scummvm.org/frs/scummvm/${version}/scummvm-${version}.tar.gz scummvm-${version}.tar.gz 6ec5bd63b73861c10ca9869f27a74989a9ad6013bad30a1ef70de6ec146c2cb5" +version="2.5.0" +files="https://downloads.scummvm.org/frs/scummvm/${version}/scummvm-${version}.tar.xz scummvm-${version}.tar.xz b47ee4b195828d2c358e38a4088eda49886dc37a04f1cc17b981345a59e0d623" auth_type=sha256 depends=("freetype" "libiconv" "libjpeg" "libpng" "libtheora" "SDL2") configopts=( @@ -18,4 +18,4 @@ launcher_command=/usr/local/bin/scummvm icon_file=icons/scummvm.ico export FREETYPE2_CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/freetype2" -export FREETYPE2_LIBS="-lfreetype" +export SDL_CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/SDL2" |