ladybird/Ports/openttd/package.sh
2023-09-09 01:06:31 +02:00

64 lines
1.2 KiB
Bash
Executable File

#!/usr/bin/env -S bash ../.port_include.sh
port='openttd'
version='13.4'
depends=(
'freetype'
'libicu'
'libpng'
'openttd-opengfx'
'openttd-opensfx'
'SDL2'
'xz'
'zlib'
)
files=(
"https://cdn.openttd.org/openttd-releases/${version}/openttd-${version}-source.tar.xz#2a1deba01bfe58e2188879f450c3fa4f3819271ab49bf348dd66545f040d146f"
)
useconfigure='true'
configopts=(
"-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt"
)
launcher_name='OpenTTD'
launcher_category='Games'
launcher_command='/usr/local/games/openttd'
icon_file='media/openttd.32.png'
configure() {
host_env
mkdir -p "${workdir}/host-build"
(
cd "${workdir}/host-build"
cmake .. -DOPTION_TOOLS_ONLY=1
)
target_env
mkdir -p "${workdir}/build"
(
cd "${workdir}/build"
cmake .. "${configopts[@]}" -DHOST_BINARY_DIR="$(pwd)/../host-build"
)
}
build() {
host_env
(
cd "${workdir}/host-build"
make "${makeopts[@]}"
)
target_env
(
cd "${workdir}/build"
make "${makeopts[@]}"
)
}
install() {
(
cd "${workdir}/build"
make install
)
ln -sf /usr/local/games/openttd "${SERENITY_INSTALL_ROOT}/usr/local/bin/openttd"
}