AppImage real?
Some checks failed
eden-license / license-header (pull_request_target) Has been cancelled
eden-build / source (pull_request_target) Has been skipped
eden-build / android (pull_request_target) Successful in 25m14s
eden-build / linux (pull_request_target) Successful in 33m9s
eden-build / windows (msvc) (pull_request_target) Has been cancelled

Signed-off-by: swurl <swurl@swurl.xyz>
This commit is contained in:
swurl 2025-04-14 20:45:18 -04:00
parent 0be33b7e4e
commit 0e99248b7f
Signed by: crueter
GPG key ID: A5A7629F109C8FD1
13 changed files with 402 additions and 2 deletions

42
AppImage-build-local.sh Executable file
View file

@ -0,0 +1,42 @@
#!/bin/bash
FILE=build/bin/eden
if test -f "$FILE"; then
# remove any previously made AppImage in the base eden git folder
rm ./eden.AppImage
# enter AppImage utility folder
cd AppImageBuilder
# run the build script to create the AppImage
# (usage) ./build.sh [source eden build folder] [destination .AppImage file]
./build.sh ../build ./eden.AppImage
FILE=./eden.AppImage
if test -f "$FILE"; then
# move the AppImage to the main eden folder
mv eden.AppImage ..
# return to main eden folder
cd ..
# show contents of current folder
echo
ls
# show AppImages specifically
echo
ls *.AppImage
echo
echo "'eden.AppImage' is now located in the current folder."
echo
else
cd ..
echo "AppImage was not built."
fi
else
echo
echo "$FILE does not exist."
echo
echo "No eden executable found in the /eden/build/bin folder!"
echo
echo "You must first build a native linux version of eden before running this script!"
echo
fi