Skip to content

Commit

Permalink
Update stable, git and dev
Browse files Browse the repository at this point in the history
- Stable, Archimage 4.3
- DEV and GIT, Archimage 3.5
  • Loading branch information
ivan-hc authored Jan 22, 2025
1 parent 7bcd776 commit 0a9f3b0
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 13 deletions.
21 changes: 15 additions & 6 deletions gimp-dev-junest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,18 @@ mkdir -p ./$APP.AppDir/.junest/usr/share/fonts
mkdir -p ./$APP.AppDir/.junest/usr/share/themes
mkdir -p ./$APP.AppDir/.junest/run/user

# CREATE THE APPIMAGE
if test -f ./*.AppImage; then
rm -R -f ./*archimage*.AppImage
fi
ARCH=x86_64 ./appimagetool --comp zstd --mksquashfs-opt -Xcompression-level --mksquashfs-opt 20 ./$APP.AppDir
mv ./*AppImage ./"$(cat ./$APP.AppDir/*.desktop | grep 'Name=' | head -1 | cut -c 6- | sed 's/ /-/g')"_DEV_"$VERSION"-archimage3.4.1-1-x86_64.AppImage
#############################################################################
# CREATE THE APPIMAGE
#############################################################################

if test -f ./*.AppImage; then rm -Rf ./*archimage*.AppImage; fi

APPNAME=$(cat ./"$APP".AppDir/*.desktop | grep 'Name=' | head -1 | cut -c 6- | sed 's/ /-/g')
REPO="GIMP-appimage"
TAG="continuous-dev"
VERSION="$VERSION"
UPINFO="gh-releases-zsync|$GITHUB_REPOSITORY_OWNER|$REPO|$TAG|*x86_64.AppImage.zsync"

ARCH=x86_64 ./appimagetool --comp zstd --mksquashfs-opt -Xcompression-level --mksquashfs-opt 20 \
-u "$UPINFO" \
./"$APP".AppDir "$APPNAME"_DEV_"$VERSION"-archimage3.5-x86_64.AppImage
21 changes: 15 additions & 6 deletions gimp-git-junest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,18 @@ strip --strip-debug ./$APP.AppDir/.junest/usr/lib/*
strip --strip-unneeded ./$APP.AppDir/.junest/usr/bin/*
_enable_mountpoints_for_the_inbuilt_bubblewrap

# CREATE THE APPIMAGE
if test -f ./*.AppImage; then
rm -R -f ./*archimage*.AppImage
fi
ARCH=x86_64 ./appimagetool --comp zstd --mksquashfs-opt -Xcompression-level --mksquashfs-opt 20 ./$APP.AppDir
mv ./*AppImage ./"$(cat ./"$APP".AppDir/*.desktop | grep 'Name=' | head -1 | cut -c 6- | sed 's/ /-/g')"_GIT_"$VERSION"-archimage3.4.4-2-x86_64.AppImage
#############################################################################
# CREATE THE APPIMAGE
#############################################################################

if test -f ./*.AppImage; then rm -Rf ./*archimage*.AppImage; fi

APPNAME=$(cat ./"$APP".AppDir/*.desktop | grep 'Name=' | head -1 | cut -c 6- | sed 's/ /-/g')
REPO="GIMP-appimage"
TAG="continuous-git"
VERSION="$VERSION"
UPINFO="gh-releases-zsync|$GITHUB_REPOSITORY_OWNER|$REPO|$TAG|*x86_64.AppImage.zsync"

ARCH=x86_64 ./appimagetool --comp zstd --mksquashfs-opt -Xcompression-level --mksquashfs-opt 20 \
-u "$UPINFO" \
./"$APP".AppDir "$APPNAME"_GIT_"$VERSION"-archimage3.5-x86_64.AppImage
2 changes: 1 addition & 1 deletion gimp-junest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ _enable_mountpoints_for_the_inbuilt_bubblewrap
if test -f ./*.AppImage; then rm -Rf ./*archimage*.AppImage; fi

APPNAME=$(cat ./"$APP".AppDir/*.desktop | grep 'Name=' | head -1 | cut -c 6- | sed 's/ /-/g')
REPO="$APPNAME-appimage"
REPO="GIMP-appimage"
TAG="continuous"
VERSION="$VERSION"
UPINFO="gh-releases-zsync|$GITHUB_REPOSITORY_OWNER|$REPO|$TAG|*x86_64.AppImage.zsync"
Expand Down

0 comments on commit 0a9f3b0

Please sign in to comment.