Fixed flatpak builder script (#13)

This commit is contained in:
adversary16 2024-03-20 17:19:13 +03:00 committed by Maxim Logaev
parent d66d037817
commit 2376226650
2 changed files with 72 additions and 10 deletions

2
.gitignore vendored
View file

@ -9,4 +9,6 @@ gschemas.compiled
windows-installer/win64-dist/ windows-installer/win64-dist/
*.exe *.exe
*.dll *.dll
*.flatpak
linux-distributives
.flatpak-builder .flatpak-builder

80
build-flatpack.sh Normal file → Executable file
View file

@ -1,25 +1,85 @@
#!/bin/bash #!/bin/bash
set -e set -e
getFlatpackDependencies(){ APP_NAME="im.dino.Dino"
DIST_NAME=${DIST_NAME:-"${APP_NAME}.flatpak"}
DIST_DIR="$PWD/linux-distributives"
BUILD_TEMP_DIR="$DIST_DIR/buildtemp"
BUILD_EXPORT_DIR="$DIST_DIR/export"
msg()
{
echo -e "\e[32m$1\e[0m"
}
fatal()
{
echo -e "\e[31m$1\e[0m"
exit 1
}
getFlatpakDependencies(){
msg "Installing Flatpak dependencies..."
flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
flatpak install flathub org.gnome.Sdk//44 flatpak install flathub org.gnome.Sdk//44
flatpak install flathub org.gnome.Platform//44 flatpak install flathub org.gnome.Platform//44
msg "Flatpak dependencies installed"
} }
prepareModules(){ pullSharedModules() {
msg "Pulling shared modules..."
git submodule init git submodule init
git submodule update git submodule update
msg "Shared modules successfully pulled"
}
prepare(){
getFlatpakDependencies
pullSharedModules
} }
build(){ build(){
FP_TEMP_BUILD_DIR=$(mktemp -d) msg "Build commencing!"
FP_OUTDIR="builds" rm -rf $BUILD_TEMP_DIR
flatpak-builder ${FP_TEMP_BUILD_DIR} im.dino.Dino.json flatpak-builder $BUILD_TEMP_DIR "${APP_NAME}.json"
flatpak build-export $FP_OUTDIR $FP_TEMP_BUILD_DIR flatpak build-export $BUILD_EXPORT_DIR $BUILD_TEMP_DIR
flatpak build-bundle $FP_OUTDIR dino.flatpak flatpak build-bundle $BUILD_EXPORT_DIR $DIST_NAME $APP_NAME
msg "Flatpack bundle ready and saved to ${DIST_NAME}"
} }
getFlatpackDependencies clean(){
prepareModules msg "Wiping intermediate files..."
build rm -rf $BUILD_TEMP_DIR $BUILD_EXPORT_DIR
msg "Cleanup complete!"
}
help()
{
cat << EOF
usage: $0 [OPTION]
--prepare install build dependencies
--build build the project
--clean remove build artifacts
--help show this help
Bundle is saved to ${APP_NAME}.flatpak by default.
Set DIST_NAME variable to customize output file name:
'DIST_NAME=customname.flatpak $0'
Running without parameters is equivalent to running:
'--prepare', '--build' and '--clean'
EOF
}
case $1 in
"--prepare" ) prepare ;;
"--build" ) build ;;
"--help" ) help ;;
"--clean" ) clean;;
"" )
prepare
build
clean
;;
*) fatal "Unknown argument!"
esac