1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37: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

View file

@ -0,0 +1,16 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=openttd-opensfx
version=1.0.1
workdir=.
files="https://cdn.openttd.org/opensfx-releases/${version}/opensfx-${version}-all.zip opensfx-${version}-all.zip 37b825426f1d690960313414423342733520d08916f512f30f7aaf30910a36c5"
auth_type=sha256
build() {
# The ZIP file we downloaded contains a tarball.
run_nocd tar xf opensfx-${version}.tar
}
install() {
run_nocd mkdir -p ${SERENITY_INSTALL_ROOT}/usr/local/share/games/openttd/baseset/
run_nocd cp -a opensfx-${version}/* ${SERENITY_INSTALL_ROOT}/usr/local/share/games/openttd/baseset/
}