build script update

This commit is contained in:
minjaesong
2023-08-27 21:01:13 +09:00
parent 3d5713cd31
commit 2bbf92d056
10 changed files with 91 additions and 41 deletions

View File

@@ -6,7 +6,8 @@ SRCFILES="terrarummac_arm"
APPDIR="./TerrarumMac.arm.app"
DESTDIR="out/$APPDIR"
RUNTIME="runtime-osx-arm"
VERSIONNUMFILE="../out/build_version_string.autogen"
PLISTFILE="../out/build_autogen_macos_Info.plist"
JARNAME="TerrarumBuild.jar"
if [ ! -d "../assets_release" ]; then
echo "'assets_release' does not exist; prepare the assets for the release and put them into the assets_release directory, exiting now." >&2
@@ -24,12 +25,7 @@ mkdir $DESTDIR/Contents/Resources
cp AppIcon.icns $DESTDIR/Contents/Resources/AppIcon.icns
cp $SRCFILES/Terrarum.sh $DESTDIR/Contents/MacOS/
chmod +x $DESTDIR/Contents/MacOS/Terrarum.sh
# Prepare an plist
cp $SRCFILES/Info.plist $DESTDIR/Contents/
printf "\n<key>CFBundleVersion</key><string>" >> $DESTDIR/Contents/Info.plist
cat $VERSIONNUMFILE >> $DESTDIR/Contents/Info.plist
printf "</string>\n</dict></plist>" >> $DESTDIR/Contents/Info.plist
cp $PLISTFILE $DESTDIR/Contents/Info.plist
# Copy over a Java runtime
mkdir $DESTDIR/Contents/MacOS/out
@@ -39,8 +35,9 @@ mv $DESTDIR/Contents/MacOS/out/$RUNTIME/bin/java $DESTDIR/Contents/MacOS/out/$RU
# Copy over all the assets and a jarfile
cp -r "../assets_release" $DESTDIR/Contents/MacOS/
mv $DESTDIR/Contents/MacOS/assets_release $DESTDIR/Contents/MacOS/assets
cp "../out/TerrarumBuild.jar" $DESTDIR/Contents/MacOS/out/
cp "../out/$JARNAME" $DESTDIR/Contents/MacOS/out/
# zip everything
cd "out"
rm $APPDIR.zip
7z a -tzip $APPDIR.zip $APPDIR