Newer
Older
minerva / Ports / openttd / package.sh
@minerva minerva on 13 Jul 1 KB Initial commit
#!/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=${MINERVA_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 "${MINERVA_INSTALL_ROOT}/usr/local/bin/openttd"
}