From 5fda5ab9d49391c7a3bee9e8afaa57f7bc46f88a Mon Sep 17 00:00:00 2001 From: a-bad-dev <244852891+a-bad-dev@users.noreply.github.com> Date: Thu, 16 Apr 2026 23:59:02 -0300 Subject: [PATCH] Create build.sh --- build.sh | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..b48ab42 --- /dev/null +++ b/build.sh @@ -0,0 +1,42 @@ +#!/bin/bash +# +# this script is intended to be run in MSYS2 CLANG64 +# + +VERSION="5.15.2" + +# system update +pacman -Syu + +# install deps +pacman -S zip git mingw-w64-clang-x86_64-{clang,cmake,ninja,curl-winssl,libpng,libjpeg-turbo,freetype,libogg,libvorbis,sqlite3,openal,zstd,gettext,luajit,SDL2} + +# prepare to compile +curl -Lo luanti.tar.gz https://github.com/luanti-org/luanti/archive/refs/tags/${VERSION}.tar.gz +gunzip luanti.tar.gz +tar -xf luanti.tar +cd luanti-${VERSION}/ + +# configure +cmake . -G Ninja -DRUN_IN_PLACE=TRUE -DBUILD_CLIENT=FALSE -DBUILD_SERVER=TRUE + +# compile +ninja -j$(nproc) + +# bundle DLLs +cp ../bundle_dlls.sh util/ +chmod +x util/bundle_dlls.sh + +./util/bundle_dlls.sh bin/luantiserver.exe bin/ + +# build the zip archive of luantiserver +mkdir luantiserver-${VERSION}-msys2-win64 +cp -r bin/ builtin/ games/ mods/ textures/ worlds/ luantiserver-${VERSION}-msys2-win64/ +zip -r9 luantiserver-${VERSION}-msys2-win64.zip luantiserver-${VERSION}-msys2-win64/ + +# clean up +mv luantiserver-${VERSION}-msys2-win64.zip .. +cd .. +rm -rf luanti{.tar,-${VERSION}} + +echo "done"