From d2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 15 Jun 2022 20:02:02 +0100 Subject: added deps for qemu --- repo/openttd/openttd.xibuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 repo/openttd/openttd.xibuild (limited to 'repo/openttd') diff --git a/repo/openttd/openttd.xibuild b/repo/openttd/openttd.xibuild new file mode 100644 index 0000000..db2ac42 --- /dev/null +++ b/repo/openttd/openttd.xibuild @@ -0,0 +1,25 @@ +#!/bin/sh + +NAME="openttd" +DESC="Open source version of the Transport Tycoon Deluxe simulator" + +MAKEDEPS="cmake fontconfig fluidsynth freetype2 icu libpng lzo ninja sdl2 xz zlib" + +PKG_VER=12.2 +SOURCE="https://cdn.openttd.org/openttd-releases/$PKG_VER/openttd-$PKG_VER-source.tar.xz" + +build() { + cmake -B build \ + -G "Ninja" \ + -DCMAKE_INSTALL_BINDIR=bin \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_DATADIR=share/games \ + -DGLOBAL_DATA_DIR=share/games/openttd \ + -DCMAKE_BUILD_TYPE=Release \ + -DReleaseBuild=ON + cmake --build build +} + +package() { + DESTDIR="$PKG_DEST" cmake --build build --target install +} -- cgit v1.2.1