Skip to content

Commit ce3e985

Browse files
Add 2 more games (#2129)
1 parent 9b96846 commit ce3e985

File tree

6 files changed

+312
-0
lines changed

6 files changed

+312
-0
lines changed

programs/aarch64-apps

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
◆ augustus-enhanced : Unofficial, a fork of the Julius project that intends to incorporate gameplay changes.
1111
◆ authenticator : Unofficial. An application which generates 2FA code in realtime.
1212
◆ ayandict : Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go.
13+
◆ banjo-recompiled : Unofficial, a static recompiled port of N64 Banjo-Kazooie for PC.
1314
◆ bibletime : Unofficial, a Bible study application based on the Sword library and Qt toolkit.
1415
◆ brave : Unofficial, a privacy oriented Web Browser based on Chromium, this is the "stable" release.
1516
◆ brave-beta : Unofficial, a privacy oriented Web Browser based on Chromium, this is the "beta" release.
@@ -97,6 +98,7 @@
9798
◆ ioquake3 : Unofficial, the de-facto OSS Quake 3 distribution.
9899
◆ isle-portable : Unofficial, a portable version of LEGO Island (1997).
99100
◆ isle-portable-enhanced : Unofficial, a portable version of LEGO Island (1997).
101+
◆ itgmania : Unofficial, a fork of StepMania 5.1, an advanced cross-platform rhythm game for home and arcade use.
100102
◆ jdownloader2 : JDownloader is a free download management tool with a huge community that makes downloading as easy and fast as it should be.
101103
◆ kaffeine : Unofficial, Media player with support for digital television (DVB-C/S/S2/T, ATSC, CI/CAM).
102104
◆ keypunch : Unofficial, keyboard writing speed test application.

programs/aarch64/banjo-recompiled

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
#!/bin/sh
2+
3+
# AM INSTALL SCRIPT VERSION 3.5
4+
set -u
5+
APP=banjo-recompiled
6+
SITE="pkgforge-dev/Banjo-Recompiled-AppImage"
7+
8+
# CREATE DIRECTORIES AND ADD REMOVER
9+
[ -n "$APP" ] && mkdir -p "/opt/$APP/tmp" "/opt/$APP/icons" && cd "/opt/$APP/tmp" || exit 1
10+
printf "#!/bin/sh\nset -e\nrm -f /usr/local/bin/$APP\nrm -R -f /opt/$APP" > ../remove
11+
printf '\n%s' "rm -f /usr/local/share/applications/$APP-AM.desktop" >> ../remove
12+
chmod a+x ../remove || exit 1
13+
14+
# DOWNLOAD AND PREPARE THE APP, $version is also used for updates
15+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/Banjo-Recompiled-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -i "aarch64\|arm64" | head -1)
16+
wget "$version" || exit 1
17+
# Keep this space in sync with other installation scripts
18+
# Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
19+
cd ..
20+
mv ./tmp/*mage ./"$APP"
21+
# Keep this space in sync with other installation scripts
22+
rm -R -f ./tmp || exit 1
23+
echo "$version" > ./version
24+
chmod a+x ./"$APP" || exit 1
25+
26+
# LINK TO PATH
27+
ln -s "/opt/$APP/$APP" "/usr/local/bin/$APP"
28+
29+
# SCRIPT TO UPDATE THE PROGRAM
30+
cat >> ./AM-updater << 'EOF'
31+
#!/bin/sh
32+
set -u
33+
APP=banjo-recompiled
34+
SITE="pkgforge-dev/Banjo-Recompiled-AppImage"
35+
version0=$(cat "/opt/$APP/version")
36+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/Banjo-Recompiled-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -i "aarch64\|arm64" | head -1)
37+
[ -n "$version" ] || { echo "Error getting link"; exit 1; }
38+
if command -v appimageupdatetool >/dev/null 2>&1; then
39+
cd "/opt/$APP" || exit 1
40+
appimageupdatetool -Or ./"$APP" && chmod a+x ./"$APP" && echo "$version" > ./version && exit 0
41+
fi
42+
if [ "$version" != "$version0" ]; then
43+
mkdir "/opt/$APP/tmp" && cd "/opt/$APP/tmp" || exit 1
44+
notify-send "A new version of $APP is available, please wait"
45+
wget "$version" || exit 1
46+
# Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
47+
cd ..
48+
mv --backup=t ./tmp/*mage ./"$APP"
49+
chmod a+x ./"$APP" || exit 1
50+
echo "$version" > ./version
51+
rm -R -f ./*zs-old ./*.part ./tmp ./*~
52+
notify-send "$APP is updated!"
53+
else
54+
echo "Update not needed!"
55+
fi
56+
EOF
57+
chmod a+x ./AM-updater || exit 1
58+
59+
# LAUNCHER & ICON
60+
./"$APP" --appimage-extract *.desktop 1>/dev/null && mv ./squashfs-root/*.desktop ./"$APP".desktop
61+
./"$APP" --appimage-extract .DirIcon 1>/dev/null && mv ./squashfs-root/.DirIcon ./DirIcon
62+
COUNT=0
63+
while [ "$COUNT" -lt 10 ]; do # Tries to get the actual icon/desktop if it is a symlink to another symlink
64+
if [ -L ./"$APP".desktop ]; then
65+
LINKPATH="$(readlink ./"$APP".desktop | sed 's|^\./||' 2>/dev/null)"
66+
./"$APP" --appimage-extract "$LINKPATH" 1>/dev/null && mv ./squashfs-root/"$LINKPATH" ./"$APP".desktop
67+
fi
68+
if [ -L ./DirIcon ]; then
69+
LINKPATH="$(readlink ./DirIcon | sed 's|^\./||' 2>/dev/null)"
70+
./"$APP" --appimage-extract "$LINKPATH" 1>/dev/null && mv ./squashfs-root/"$LINKPATH" ./DirIcon
71+
fi
72+
[ ! -L ./"$APP".desktop ] && [ ! -L ./DirIcon ] && break
73+
COUNT=$((COUNT + 1))
74+
done
75+
sed -i "s#Exec=[^ ]*#Exec=$APP#g; s#Icon=.*#Icon=/opt/$APP/icons/$APP#g; s# --no-sandbox##g" ./"$APP".desktop
76+
mv ./"$APP".desktop /usr/local/share/applications/"$APP"-AM.desktop && mv ./DirIcon ./icons/"$APP" 1>/dev/null
77+
rm -R -f ./squashfs-root

programs/aarch64/itgmania

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
#!/bin/sh
2+
3+
# AM INSTALL SCRIPT VERSION 3.5
4+
set -u
5+
APP=itgmania
6+
SITE="pkgforge-dev/ITGmania-AppImage"
7+
8+
# CREATE DIRECTORIES AND ADD REMOVER
9+
[ -n "$APP" ] && mkdir -p "/opt/$APP/tmp" "/opt/$APP/icons" && cd "/opt/$APP/tmp" || exit 1
10+
printf "#!/bin/sh\nset -e\nrm -f /usr/local/bin/$APP\nrm -R -f /opt/$APP" > ../remove
11+
printf '\n%s' "rm -f /usr/local/share/applications/$APP-AM.desktop" >> ../remove
12+
chmod a+x ../remove || exit 1
13+
14+
# DOWNLOAD AND PREPARE THE APP, $version is also used for updates
15+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/ITGmania-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -i "aarch64\|arm64" | head -1)
16+
wget "$version" || exit 1
17+
# Keep this space in sync with other installation scripts
18+
# Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
19+
cd ..
20+
mv ./tmp/*mage ./"$APP"
21+
# Keep this space in sync with other installation scripts
22+
rm -R -f ./tmp || exit 1
23+
echo "$version" > ./version
24+
chmod a+x ./"$APP" || exit 1
25+
26+
# LINK TO PATH
27+
ln -s "/opt/$APP/$APP" "/usr/local/bin/$APP"
28+
29+
# SCRIPT TO UPDATE THE PROGRAM
30+
cat >> ./AM-updater << 'EOF'
31+
#!/bin/sh
32+
set -u
33+
APP=itgmania
34+
SITE="pkgforge-dev/ITGmania-AppImage"
35+
version0=$(cat "/opt/$APP/version")
36+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/ITGmania-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -i "aarch64\|arm64" | head -1)
37+
[ -n "$version" ] || { echo "Error getting link"; exit 1; }
38+
if command -v appimageupdatetool >/dev/null 2>&1; then
39+
cd "/opt/$APP" || exit 1
40+
appimageupdatetool -Or ./"$APP" && chmod a+x ./"$APP" && echo "$version" > ./version && exit 0
41+
fi
42+
if [ "$version" != "$version0" ]; then
43+
mkdir "/opt/$APP/tmp" && cd "/opt/$APP/tmp" || exit 1
44+
notify-send "A new version of $APP is available, please wait"
45+
wget "$version" || exit 1
46+
# Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
47+
cd ..
48+
mv --backup=t ./tmp/*mage ./"$APP"
49+
chmod a+x ./"$APP" || exit 1
50+
echo "$version" > ./version
51+
rm -R -f ./*zs-old ./*.part ./tmp ./*~
52+
notify-send "$APP is updated!"
53+
else
54+
echo "Update not needed!"
55+
fi
56+
EOF
57+
chmod a+x ./AM-updater || exit 1
58+
59+
# LAUNCHER & ICON
60+
./"$APP" --appimage-extract *.desktop 1>/dev/null && mv ./squashfs-root/*.desktop ./"$APP".desktop
61+
./"$APP" --appimage-extract .DirIcon 1>/dev/null && mv ./squashfs-root/.DirIcon ./DirIcon
62+
COUNT=0
63+
while [ "$COUNT" -lt 10 ]; do # Tries to get the actual icon/desktop if it is a symlink to another symlink
64+
if [ -L ./"$APP".desktop ]; then
65+
LINKPATH="$(readlink ./"$APP".desktop | sed 's|^\./||' 2>/dev/null)"
66+
./"$APP" --appimage-extract "$LINKPATH" 1>/dev/null && mv ./squashfs-root/"$LINKPATH" ./"$APP".desktop
67+
fi
68+
if [ -L ./DirIcon ]; then
69+
LINKPATH="$(readlink ./DirIcon | sed 's|^\./||' 2>/dev/null)"
70+
./"$APP" --appimage-extract "$LINKPATH" 1>/dev/null && mv ./squashfs-root/"$LINKPATH" ./DirIcon
71+
fi
72+
[ ! -L ./"$APP".desktop ] && [ ! -L ./DirIcon ] && break
73+
COUNT=$((COUNT + 1))
74+
done
75+
sed -i "s#Exec=[^ ]*#Exec=$APP#g; s#Icon=.*#Icon=/opt/$APP/icons/$APP#g; s# --no-sandbox##g" ./"$APP".desktop
76+
mv ./"$APP".desktop /usr/local/share/applications/"$APP"-AM.desktop && mv ./DirIcon ./icons/"$APP" 1>/dev/null
77+
rm -R -f ./squashfs-root

programs/x86_64-apps

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@
187187
◆ bananas : Bananas, Cross-Platform screen sharing made simple.
188188
◆ banban : A productivity app inspired by GitHub Projects Kanban.
189189
◆ bandwhich : Terminal bandwidth utilization tool.
190+
◆ banjo-recompiled : Unofficial, a static recompiled port of N64 Banjo-Kazooie for PC.
190191
◆ barnacal : A simple menu bar app for viewing a calendar
191192
◆ basilisk2 : Classic Macintosh emulator BasiliskII.
192193
◆ bastyon : Decentralized social network based on the blockchain.
@@ -1214,6 +1215,7 @@
12141215
◆ isle-portable-enhanced : Unofficial, a portable version of LEGO Island (1997).
12151216
◆ isoimagewriter : Write an ISO Image to a USB Disk. This script installs the full "kdeutils" suite.
12161217
◆ isolate : Lightweight image browser.
1218+
◆ itgmania : Unofficial, a fork of StepMania 5.1, an advanced cross-platform rhythm game for home and arcade use.
12171219
◆ itusb1-manager : Control the ITUSB1 USB Test Switch.
12181220
◆ jabref : Graphical Java application for managing BibTeX and biblatex (.bib) databases.
12191221
◆ jag : Program for telemetry veiwing.

programs/x86_64/banjo-recompiled

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
#!/bin/sh
2+
3+
# AM INSTALL SCRIPT VERSION 3.5
4+
set -u
5+
APP=banjo-recompiled
6+
SITE="pkgforge-dev/Banjo-Recompiled-AppImage"
7+
8+
# CREATE DIRECTORIES AND ADD REMOVER
9+
[ -n "$APP" ] && mkdir -p "/opt/$APP/tmp" "/opt/$APP/icons" && cd "/opt/$APP/tmp" || exit 1
10+
printf "#!/bin/sh\nset -e\nrm -f /usr/local/bin/$APP\nrm -R -f /opt/$APP" > ../remove
11+
printf '\n%s' "rm -f /usr/local/share/applications/$APP-AM.desktop" >> ../remove
12+
chmod a+x ../remove || exit 1
13+
14+
# DOWNLOAD AND PREPARE THE APP, $version is also used for updates
15+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/Banjo-Recompiled-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -vi "i386\|i686\|aarch64\|arm64\|armv7l" | head -1)
16+
wget "$version" || exit 1
17+
# Keep this space in sync with other installation scripts
18+
# Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
19+
cd ..
20+
mv ./tmp/*mage ./"$APP"
21+
# Keep this space in sync with other installation scripts
22+
rm -R -f ./tmp || exit 1
23+
echo "$version" > ./version
24+
chmod a+x ./"$APP" || exit 1
25+
26+
# LINK TO PATH
27+
ln -s "/opt/$APP/$APP" "/usr/local/bin/$APP"
28+
29+
# SCRIPT TO UPDATE THE PROGRAM
30+
cat >> ./AM-updater << 'EOF'
31+
#!/bin/sh
32+
set -u
33+
APP=banjo-recompiled
34+
SITE="pkgforge-dev/Banjo-Recompiled-AppImage"
35+
version0=$(cat "/opt/$APP/version")
36+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/Banjo-Recompiled-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -vi "i386\|i686\|aarch64\|arm64\|armv7l" | head -1)
37+
[ -n "$version" ] || { echo "Error getting link"; exit 1; }
38+
if command -v appimageupdatetool >/dev/null 2>&1; then
39+
cd "/opt/$APP" || exit 1
40+
appimageupdatetool -Or ./"$APP" && chmod a+x ./"$APP" && echo "$version" > ./version && exit 0
41+
fi
42+
if [ "$version" != "$version0" ]; then
43+
mkdir "/opt/$APP/tmp" && cd "/opt/$APP/tmp" || exit 1
44+
notify-send "A new version of $APP is available, please wait"
45+
wget "$version" || exit 1
46+
# Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
47+
cd ..
48+
mv --backup=t ./tmp/*mage ./"$APP"
49+
chmod a+x ./"$APP" || exit 1
50+
echo "$version" > ./version
51+
rm -R -f ./*zs-old ./*.part ./tmp ./*~
52+
notify-send "$APP is updated!"
53+
else
54+
echo "Update not needed!"
55+
fi
56+
EOF
57+
chmod a+x ./AM-updater || exit 1
58+
59+
# LAUNCHER & ICON
60+
./"$APP" --appimage-extract *.desktop 1>/dev/null && mv ./squashfs-root/*.desktop ./"$APP".desktop
61+
./"$APP" --appimage-extract .DirIcon 1>/dev/null && mv ./squashfs-root/.DirIcon ./DirIcon
62+
COUNT=0
63+
while [ "$COUNT" -lt 10 ]; do # Tries to get the actual icon/desktop if it is a symlink to another symlink
64+
if [ -L ./"$APP".desktop ]; then
65+
LINKPATH="$(readlink ./"$APP".desktop | sed 's|^\./||' 2>/dev/null)"
66+
./"$APP" --appimage-extract "$LINKPATH" 1>/dev/null && mv ./squashfs-root/"$LINKPATH" ./"$APP".desktop
67+
fi
68+
if [ -L ./DirIcon ]; then
69+
LINKPATH="$(readlink ./DirIcon | sed 's|^\./||' 2>/dev/null)"
70+
./"$APP" --appimage-extract "$LINKPATH" 1>/dev/null && mv ./squashfs-root/"$LINKPATH" ./DirIcon
71+
fi
72+
[ ! -L ./"$APP".desktop ] && [ ! -L ./DirIcon ] && break
73+
COUNT=$((COUNT + 1))
74+
done
75+
sed -i "s#Exec=[^ ]*#Exec=$APP#g; s#Icon=.*#Icon=/opt/$APP/icons/$APP#g; s# --no-sandbox##g" ./"$APP".desktop
76+
mv ./"$APP".desktop /usr/local/share/applications/"$APP"-AM.desktop && mv ./DirIcon ./icons/"$APP" 1>/dev/null
77+
rm -R -f ./squashfs-root

programs/x86_64/itgmania

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
#!/bin/sh
2+
3+
# AM INSTALL SCRIPT VERSION 3.5
4+
set -u
5+
APP=itgmania
6+
SITE="pkgforge-dev/ITGmania-AppImage"
7+
8+
# CREATE DIRECTORIES AND ADD REMOVER
9+
[ -n "$APP" ] && mkdir -p "/opt/$APP/tmp" "/opt/$APP/icons" && cd "/opt/$APP/tmp" || exit 1
10+
printf "#!/bin/sh\nset -e\nrm -f /usr/local/bin/$APP\nrm -R -f /opt/$APP" > ../remove
11+
printf '\n%s' "rm -f /usr/local/share/applications/$APP-AM.desktop" >> ../remove
12+
chmod a+x ../remove || exit 1
13+
14+
# DOWNLOAD AND PREPARE THE APP, $version is also used for updates
15+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/ITGmania-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -vi "i386\|i686\|aarch64\|arm64\|armv7l" | head -1)
16+
wget "$version" || exit 1
17+
# Keep this space in sync with other installation scripts
18+
# Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
19+
cd ..
20+
mv ./tmp/*mage ./"$APP"
21+
# Keep this space in sync with other installation scripts
22+
rm -R -f ./tmp || exit 1
23+
echo "$version" > ./version
24+
chmod a+x ./"$APP" || exit 1
25+
26+
# LINK TO PATH
27+
ln -s "/opt/$APP/$APP" "/usr/local/bin/$APP"
28+
29+
# SCRIPT TO UPDATE THE PROGRAM
30+
cat >> ./AM-updater << 'EOF'
31+
#!/bin/sh
32+
set -u
33+
APP=itgmania
34+
SITE="pkgforge-dev/ITGmania-AppImage"
35+
version0=$(cat "/opt/$APP/version")
36+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/ITGmania-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -vi "i386\|i686\|aarch64\|arm64\|armv7l" | head -1)
37+
[ -n "$version" ] || { echo "Error getting link"; exit 1; }
38+
if command -v appimageupdatetool >/dev/null 2>&1; then
39+
cd "/opt/$APP" || exit 1
40+
appimageupdatetool -Or ./"$APP" && chmod a+x ./"$APP" && echo "$version" > ./version && exit 0
41+
fi
42+
if [ "$version" != "$version0" ]; then
43+
mkdir "/opt/$APP/tmp" && cd "/opt/$APP/tmp" || exit 1
44+
notify-send "A new version of $APP is available, please wait"
45+
wget "$version" || exit 1
46+
# Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
47+
cd ..
48+
mv --backup=t ./tmp/*mage ./"$APP"
49+
chmod a+x ./"$APP" || exit 1
50+
echo "$version" > ./version
51+
rm -R -f ./*zs-old ./*.part ./tmp ./*~
52+
notify-send "$APP is updated!"
53+
else
54+
echo "Update not needed!"
55+
fi
56+
EOF
57+
chmod a+x ./AM-updater || exit 1
58+
59+
# LAUNCHER & ICON
60+
./"$APP" --appimage-extract *.desktop 1>/dev/null && mv ./squashfs-root/*.desktop ./"$APP".desktop
61+
./"$APP" --appimage-extract .DirIcon 1>/dev/null && mv ./squashfs-root/.DirIcon ./DirIcon
62+
COUNT=0
63+
while [ "$COUNT" -lt 10 ]; do # Tries to get the actual icon/desktop if it is a symlink to another symlink
64+
if [ -L ./"$APP".desktop ]; then
65+
LINKPATH="$(readlink ./"$APP".desktop | sed 's|^\./||' 2>/dev/null)"
66+
./"$APP" --appimage-extract "$LINKPATH" 1>/dev/null && mv ./squashfs-root/"$LINKPATH" ./"$APP".desktop
67+
fi
68+
if [ -L ./DirIcon ]; then
69+
LINKPATH="$(readlink ./DirIcon | sed 's|^\./||' 2>/dev/null)"
70+
./"$APP" --appimage-extract "$LINKPATH" 1>/dev/null && mv ./squashfs-root/"$LINKPATH" ./DirIcon
71+
fi
72+
[ ! -L ./"$APP".desktop ] && [ ! -L ./DirIcon ] && break
73+
COUNT=$((COUNT + 1))
74+
done
75+
sed -i "s#Exec=[^ ]*#Exec=$APP#g; s#Icon=.*#Icon=/opt/$APP/icons/$APP#g; s# --no-sandbox##g" ./"$APP".desktop
76+
mv ./"$APP".desktop /usr/local/share/applications/"$APP"-AM.desktop && mv ./DirIcon ./icons/"$APP" 1>/dev/null
77+
rm -R -f ./squashfs-root

0 commit comments

Comments
 (0)