-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake-appimage.sh
More file actions
23 lines (19 loc) · 921 Bytes
/
make-appimage.sh
File metadata and controls
23 lines (19 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
set -eu
ARCH=$(uname -m)
VERSION=$(pacman -Q tagger | awk '{print $2; exit}')
export ARCH VERSION
export OUTPATH=./dist
export ADD_HOOKS="self-updater.hook"
export UPINFO="gh-releases-zsync|${GITHUB_REPOSITORY%/*}|${GITHUB_REPOSITORY#*/}|latest|*$ARCH.AppImage.zsync"
export ICON=/usr/share/icons/hicolor/scalable/apps/org.nickvision.tagger.svg
export DESKTOP=/usr/share/applications/org.nickvision.tagger.desktop
export DEPLOY_DOTNET=1
export STARTUPWMCLASS=org.nickvision.tagger # Default to Wayland's wmclass. For X11, GTK_CLASS_FIX will force the wmclass to be the Wayland one.
export GTK_CLASS_FIX=1
# Trace and deploy all files and directories needed for the application (including binaries, libraries and others)
quick-sharun /usr/bin/org.nickvision.tagger \
/usr/lib/org.nickvision.tagger \
/usr/share/help/*/tagger
# Turn AppDir into AppImage
quick-sharun --make-appimage