mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
f421addc50
`fheroes2` is a recreation of HoMM2 game engine. This port is set with
`GET_HOMM2_DEMO=ON` for a free demo version to be automatically
downloaded and used, without requiring the user to provide game
resources from the original game.
Besides the provided patches, we set `CXXFLAGS="'-D_GNU_SOURCE'"` to
build the port, for SerenityOS' `LibC/endian.h` to provide required
endianness functions and constants.
**Considerations**:
* In-game custom cursor is not working, game logs show:
`Cursors are not currently supported` [0].
* Game is still unplayable, as it commonly raises a Kernel panic when
trying to start a new game (reported at SerenityOS/serenity#9401).
[0] ae3bc94772/src/events/SDL_mouse.c (L952)
30 lines
1,012 B
Bash
Executable file
30 lines
1,012 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=fheroes2
|
|
useconfigure=true
|
|
version=0.9.13
|
|
depends=("SDL2" "SDL2_image" "SDL2_mixer" "libpng" "zlib")
|
|
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt" "-DUSE_SDL_VERSION=SDL2" "-DENABLE_IMAGE=ON" "-DGET_HOMM2_DEMO=ON")
|
|
files="https://github.com/ihhub/fheroes2/archive/refs/tags/${version}.zip fheroes2-${version}.zip 879805bc88c3561d0eedc3dda425e8d9a3c7ae8a80b9f6909797acc72598cc17"
|
|
auth_type=sha256
|
|
launcher_name="Free Heroes of Might and Magic II"
|
|
launcher_category=Games
|
|
launcher_command=/opt/fheroes2/fheroes2
|
|
icon_file=src/resources/fheroes2.ico
|
|
|
|
pre_configure() {
|
|
export CXXFLAGS="'-D_GNU_SOURCE'"
|
|
}
|
|
|
|
configure() {
|
|
run cmake "${configopts[@]}" .
|
|
}
|
|
|
|
post_configure() {
|
|
unset CXXFLAGS
|
|
}
|
|
|
|
install() {
|
|
mkdir -p "${SERENITY_INSTALL_ROOT}/opt/fheroes2/files"
|
|
run cp -r data/ maps/ fheroes2 fheroes2.key "${SERENITY_INSTALL_ROOT}/opt/fheroes2"
|
|
run cp -r files/data "${SERENITY_INSTALL_ROOT}/opt/fheroes2/files"
|
|
}
|