Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-hc committed Mar 21, 2024
1 parent 1705725 commit 0d07f2c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions chromium
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir tmp;
cd tmp;

# DOWNLOADING THE DEPENDENCIES
wget -q $(wget -q https://api.github.com/repos/probonopd/go-appimage/releases -O - | grep -v zsync | grep -i continuous | grep -i appimagetool | grep -i i686 | grep browser_download_url | cut -d '"' -f 4 | head -1) -O appimagetool
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-i686.AppImage -O appimagetool
wget https://github.com/ivan-hc/pkg2appimage-32bit/releases/download/continuous/pkg2appimage-i386.AppImage -O pkg2appimage
chmod a+x ./appimagetool ./pkg2appimage

Expand Down Expand Up @@ -56,6 +56,6 @@ chmod a+x ./$APP/$APP.AppDir/AppRun
cp ./$APP/$APP.AppDir/usr/share/applications/$APP.desktop ./$APP/$APP.AppDir/$APP.desktop

# ...EXPORT THE APPDIR TO AN APPIMAGE!
ARCH=i386 VERSION=$(./appimagetool -v | grep -o '[[:digit:]]*') ./appimagetool -s ./$APP/$APP.AppDir
ARCH=i386 ./appimagetool -n ./$APP/$APP.AppDir
cd ..;
mv ./tmp/*.AppImage ./Chromium_Web_Browser-$VERSION-i386.AppImage
4 changes: 2 additions & 2 deletions gimp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir tmp;
cd tmp;

# DOWNLOADING THE DEPENDENCIES
wget -q $(wget -q https://api.github.com/repos/probonopd/go-appimage/releases -O - | grep -v zsync | grep -i continuous | grep -i appimagetool | grep -i i686 | grep browser_download_url | cut -d '"' -f 4 | head -1) -O appimagetool
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-i686.AppImage -O appimagetool
wget https://github.com/ivan-hc/pkg2appimage-32bit/releases/download/continuous/pkg2appimage-i386.AppImage -O pkg2appimage
chmod a+x ./appimagetool ./pkg2appimage

Expand Down Expand Up @@ -60,6 +60,6 @@ chmod a+x ./$APP/$APP.AppDir/AppRun
# ..IMPORT THE DESKTOP FILE TO THE ROOT OF THE APPDIR...
cp ./$APP/$APP.AppDir/usr/share/applications/*$APP* ./$APP/$APP.AppDir/$APP.desktop

ARCH=i386 VERSION=$(./appimagetool -v | grep -o '[[:digit:]]*') ./appimagetool -s ./$APP/$APP.AppDir
ARCH=i386 ./appimagetool -n ./$APP/$APP.AppDir
cd ..
mv ./tmp/*.AppImage ./GNU-Image-Manipulation-Program_"$VERSION"-i386.AppImage
4 changes: 2 additions & 2 deletions kdegames
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir tmp;
cd tmp;

# DOWNLOADING THE DEPENDENCIES
wget -q $(wget -q https://api.github.com/repos/probonopd/go-appimage/releases -O - | grep -v zsync | grep -i continuous | grep -i appimagetool | grep -i i686 | grep browser_download_url | cut -d '"' -f 4 | head -1) -O appimagetool
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-i686.AppImage -O appimagetool
wget https://github.com/ivan-hc/pkg2appimage-32bit/releases/download/continuous/pkg2appimage-i386.AppImage -O pkg2appimage # 32 BIT ONLY (uncomment to enable)
chmod a+x ./appimagetool ./pkg2appimage

Expand Down Expand Up @@ -75,6 +75,6 @@ Type=Application
Categories=Game;" >> ./$APP/$APP.AppDir/$APP.desktop

# ...EXPORT THE APPDIR TO AN APPIMAGE!
ARCH=i386 VERSION=$(./appimagetool -v | grep -o '[[:digit:]]*') ./appimagetool -s ./$APP/$APP.AppDir
ARCH=i386 ./appimagetool -n ./$APP/$APP.AppDir
cd ..
mv ./tmp/*.AppImage ./Kdegames_"$VERSION"-i386.AppImage
4 changes: 2 additions & 2 deletions vlc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir tmp;
cd tmp;

# DOWNLOADING THE DEPENDENCIES
wget -q $(wget -q https://api.github.com/repos/probonopd/go-appimage/releases -O - | grep -v zsync | grep -i continuous | grep -i appimagetool | grep -i i686 | grep browser_download_url | cut -d '"' -f 4 | head -1) -O appimagetool
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-i686.AppImage -O appimagetool
wget https://github.com/ivan-hc/pkg2appimage-32bit/releases/download/continuous/pkg2appimage-i386.AppImage -O pkg2appimage
chmod a+x ./appimagetool ./pkg2appimage

Expand Down Expand Up @@ -80,6 +80,6 @@ chmod a+x ./$APP/$APP.AppDir/AppRun
#cp ./$APP/$APP.AppDir/usr/share/applications/* ./$APP/$APP.AppDir/ 2>/dev/null

# ...EXPORT THE APPDIR TO AN APPIMAGE!
ARCH=i386 VERSION=$(./appimagetool -v | grep -o '[[:digit:]]*') ./appimagetool -s ./$APP/$APP.AppDir
ARCH=i386 ./appimagetool -n ./$APP/$APP.AppDir
cd ..
mv ./tmp/*.AppImage ./VLC-media-player_"$VERSION"-i386.AppImage

0 comments on commit 0d07f2c

Please sign in to comment.