2021-04-04 03:15:05 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port=scummvm
|
|
|
|
useconfigure="true"
|
2021-10-17 18:07:01 +03:00
|
|
|
version="2.5.0"
|
|
|
|
files="https://downloads.scummvm.org/frs/scummvm/${version}/scummvm-${version}.tar.xz scummvm-${version}.tar.xz b47ee4b195828d2c358e38a4088eda49886dc37a04f1cc17b981345a59e0d623"
|
2021-04-25 13:20:15 +03:00
|
|
|
auth_type=sha256
|
2021-09-27 01:16:18 +03:00
|
|
|
depends=("freetype" "libiconv" "libjpeg" "libpng" "libtheora" "SDL2")
|
|
|
|
configopts=(
|
|
|
|
"--enable-c++11"
|
|
|
|
"--enable-release-mode"
|
|
|
|
"--enable-optimizations"
|
|
|
|
"--opengl-mode=none"
|
|
|
|
"--with-sdl-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
|
|
|
|
)
|
2021-04-24 01:09:26 +03:00
|
|
|
launcher_name=ScummVM
|
|
|
|
launcher_category=Games
|
|
|
|
launcher_command=/usr/local/bin/scummvm
|
2021-06-09 18:44:18 +03:00
|
|
|
icon_file=icons/scummvm.ico
|
2021-06-04 12:03:13 +03:00
|
|
|
|
2021-06-07 15:18:37 +03:00
|
|
|
export FREETYPE2_CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/freetype2"
|
2021-10-17 18:07:01 +03:00
|
|
|
export SDL_CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/SDL2"
|