mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-03 18:18:44 +08:00
47 lines
1.1 KiB
Bash
47 lines
1.1 KiB
Bash
VERSION=1.8
|
|
GIT=https://github.com/OpenTTD/OpenTTD.git
|
|
BRANCH=release/$VERSION
|
|
BUILD_DEPENDS=(freetype2 liborbital libpng sdl1 xz zlib)
|
|
|
|
function recipe_version {
|
|
echo "$VERSION"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_build {
|
|
sysroot="$(realpath ../sysroot)"
|
|
export CFLAGS="-I$sysroot/include"
|
|
export LDFLAGS="-L$sysroot/lib --static"
|
|
./configure \
|
|
--build=${BUILD} \
|
|
--host=${HOST} \
|
|
--prefix='' \
|
|
--enable-static \
|
|
--without-liblzo2 \
|
|
--disable-network \
|
|
--without-threads
|
|
"$REDOX_MAKE" VERBOSE=1 -j"$($NPROC)"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_clean {
|
|
"$REDOX_MAKE" clean
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
bundledir="$dest/bundle"
|
|
|
|
"$REDOX_MAKE" VERBOSE=1 ROOT_DIR="$dest/../build/" BUNDLE_DIR="$bundledir" INSTALL_DIR="$dest/usr" install
|
|
rm -rf "$bundledir"
|
|
|
|
mkdir -pv "$1/ui/apps"
|
|
cp -v "${COOKBOOK_RECIPE}/manifest" "$1/ui/apps/openttd"
|
|
|
|
mkdir -pv "$1/ui/icons/apps"
|
|
cp -v "media/openttd.64.png" "$1/ui/icons/apps/openttd.png"
|
|
|
|
skip=1
|
|
}
|