1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:47:35 +00:00

Ports: Add openttd

This commit is contained in:
Gunnar Beutner 2021-04-17 15:40:17 +02:00 committed by Linus Groh
parent 4b33365078
commit ae32abffe9
8 changed files with 244 additions and 0 deletions

47
Ports/openttd/package.sh Executable file
View file

@ -0,0 +1,47 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=openttd
version=1.11.0
auth_type=sha256
depends="SDL2 libpng zlib xz"
files="https://cdn.openttd.org/openttd-releases/${version}/openttd-${version}-source.tar.xz openttd-${version}.tar.xz 5e65184e07368ba1afa62dbb3e35abaee6c4da6730ff4bc9eb4447d53363c7a8"
useconfigure=true
configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMake/CMakeToolchain.txt"
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 $DESTDIR/usr/local/bin/openttd
}