Skip to content

Commit 1464b33

Browse files
committed
package app
1 parent d8e3c3e commit 1464b33

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

get-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARCH=$(uname -m)
66

77
echo "Installing package dependencies..."
88
echo "---------------------------------------------------------------"
9-
# pacman -Syu --noconfirm PACKAGESHERE
9+
pacman -Syu --noconfirm gimagereader-qt kvantum lxqt-qtplugin qt6ct
1010

1111
echo "Installing debloated packages..."
1212
echo "---------------------------------------------------------------"

make-appimage.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@
33
set -eu
44

55
ARCH=$(uname -m)
6-
VERSION=$(pacman -Q PACKAGENAME | awk '{print $2; exit}') # example command to get version of application here
6+
VERSION=$(pacman -Q gimagereader-qt | awk '{print $2; exit}') # example command to get version of application here
77
export ARCH VERSION
88
export OUTPATH=./dist
99
export ADD_HOOKS="self-updater.hook"
1010
export UPINFO="gh-releases-zsync|${GITHUB_REPOSITORY%/*}|${GITHUB_REPOSITORY#*/}|latest|*$ARCH.AppImage.zsync"
11-
export ICON=PATH_OR_URL_TO_ICON
12-
export DESKTOP=PATH_OR_URL_TO_DESKTOP_ENTRY
11+
export ICON=/usr/share/icons/hicolor/256x256/apps/gimagereader.png
12+
export DESKTOP=/usr/share/applications/gimagereader-qt6.desktop
1313

1414
# Deploy dependencies
15-
quick-sharun /PATH/TO/BINARY_AND_LIBRARIES_HERE
15+
quick-sharun \
16+
/usr/bin/gimagereader-qt6 \
17+
/usr/bin/tesseract
1618

1719
# Additional changes can be done in between here
1820

0 commit comments

Comments
 (0)