2024-12-08 04:16:05 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install build-essential flatpak flatpak-builder gnome-software-plugin-flatpak -y
|
|
|
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
|
|
flatpak install flathub org.gnome.Platform//46 org.gnome.Sdk//46
|
|
|
|
|
|
|
|
|
2024-12-08 09:08:41 +00:00
|
|
|
##
|
|
|
|
# in OrcaSlicer folder, run following command to build Orca
|
|
|
|
# # First time build
|
|
|
|
# flatpak-builder --state-dir=.flatpak-builder --keep-build-dirs --user --force-clean build-dir flatpak/io.github.softfever.OrcaSlicer.yml
|
2024-12-08 04:16:05 +00:00
|
|
|
|
2024-12-08 09:08:41 +00:00
|
|
|
# # Subsequent builds (only rebuilding OrcaSlicer)
|
|
|
|
# flatpak-builder --state-dir=.flatpak-builder --keep-build-dirs --user build-dir flatpak/io.github.softfever.OrcaSlicer.yml --build-only=OrcaSlicer
|