- pulls fix for #5463 out of the github release workflow and into the make/yarn build process - implements a wrapper script that pins linuxdeploy and injects a new location for XDG_CACHE_HOME into the build pipeline, allowing manipulating .cache/tauri without tainting the hosts .cache - adds ./.cache (project_root/.cache) to make clean and mise clean task - remove .devcontainer/buildAppImage.sh, obsolete now that extra build steps have been removed from the github workflow and incorporated in the normal build process - remove appimagetool from .devcontainer/postCreateCommand.sh, as it was only used by .devcontainer/buildAppImage.sh
17 lines
344 B
Bash
Executable File
17 lines
344 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# install tauri prerequisites + xdg-utils for xdg-open + libfuse2 for using appimagekit
|
|
|
|
sudo apt update
|
|
sudo apt install -yqq libwebkit2gtk-4.1-dev \
|
|
build-essential \
|
|
curl \
|
|
wget \
|
|
file \
|
|
libxdo-dev \
|
|
libssl-dev \
|
|
libayatana-appindicator3-dev \
|
|
librsvg2-dev \
|
|
xdg-utils \
|
|
libfuse2
|