1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/bin/bash
PROG=nixnote2
DESKTOP_FILE=appdir/usr/share/applications/${PROG}.desktop
BUILD_DIR=$(cat _build_dir_.txt)
echo Build dir: ${BUILD_DIR}
if [ ! -f "$DESKTOP_FILE" ]; then
echo "$DESKTOP_FILE not found!"
exit 1
fi
export VERSIONX=$(cat appdir/usr/share/nixnote2/version.txt)
echo Version: ${VERSIONX}
#CMD="linuxdeployqt $DESKTOP_FILE -bundle-non-qt-libs"
#echo About to run: $CMD
#$CMD
CMD="linuxdeployqt $DESKTOP_FILE -appimage"
echo About to run: $CMD
$CMD
|