Skip to content

Commit 5c9f067

Browse files
authored
Add knights
1 parent 5b01cc6 commit 5c9f067

4 files changed

Lines changed: 83 additions & 6 deletions

File tree

programs/aarch64-apps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@
223223
◆ kid3 : Unofficial, efficient audio tagger that supports a large variety of file formats.
224224
◆ kill : Terminate a process. This is part of "am-utils" suite.
225225
◆ killall : Kill processes by name. This is part of "am-utils" suite.
226-
◆ knights : Unofficial, KDE's chess frontend.
226+
◆ knights : Unofficial, KDE's chess game frontend.
227227
◆ kronos : Unofficial, Sega Saturn emulator.
228228
◆ lapce : Lightning-fast and Powerful Code Editor written in Rust.
229229
◆ lba2-classic-community : Unofficial, a community fork for evolving and modernizing LBA2 source port.

programs/aarch64/knights

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# AM INSTALL SCRIPT VERSION 3.5
44
set -u
55
APP=knights
6-
SITE="pkgforge-dev/Knights-AppImage"
6+
SITE="pkgforge-dev/knights-appimage"
77

88
# CREATE DIRECTORIES AND ADD REMOVER
99
[ -n "$APP" ] && mkdir -p "/opt/$APP/tmp" "/opt/$APP/icons" && cd "/opt/$APP/tmp" || exit 1
@@ -12,7 +12,7 @@ printf '\n%s' "rm -f /usr/local/share/applications/$APP-AM.desktop" >> ../remove
1212
chmod a+x ../remove || exit 1
1313

1414
# DOWNLOAD AND PREPARE THE APP, $version is also used for updates
15-
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/Knights-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -i "aarch64\|arm64" | head -1)
15+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/knights-appimage/releases | sed 's/[()",{} ]/\n/g' | grep -oi "https.*download.*mage$" | grep -i "aarch64\|arm64" | head -1)
1616
wget "$version" || exit 1
1717
# Keep this space in sync with other installation scripts
1818
# Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
@@ -31,9 +31,9 @@ cat >> ./AM-updater << 'EOF'
3131
#!/bin/sh
3232
set -u
3333
APP=knights
34-
SITE="pkgforge-dev/Knights-AppImage"
34+
SITE="pkgforge-dev/knights-appimage"
3535
version0=$(cat "/opt/$APP/version")
36-
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/Knights-AppImage/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*mage$" | grep -i "aarch64\|arm64" | head -1)
36+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/knights-appimage/releases | sed 's/[()",{} ]/\n/g' | grep -oi "https.*download.*mage$" | grep -i "aarch64\|arm64" | head -1)
3737
[ -n "$version" ] || { echo "Error getting link"; exit 1; }
3838
if command -v appimageupdatetool >/dev/null 2>&1; then
3939
cd "/opt/$APP" || exit 1

programs/x86_64-apps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,7 @@
14601460
◆ kmymoney : KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment.
14611461
◆ knavalbattle : Battle Ship game. This is part of "kdegames".
14621462
◆ knetwalk : Net constructing game. This is part of "kdegames".
1463-
◆ knights : Chess interface for the KDE Platform. This is part of "kdegames".
1463+
◆ knights : Unofficial, KDE's chess game frontend.
14641464
◆ knowte : Note taking.
14651465
◆ koboldcpp : Simple 1-file way to run GGML and GGUF models with KoboldAI's UI.
14661466
◆ koishi-desktop : Launch Koishi from your desktop.

programs/x86_64/knights

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=knights
6+
SITE="pkgforge-dev/knights-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/knights-appimage/releases | sed 's/[()",{} ]/\n/g' | grep -oi "https.*download.*mage$" | grep -vi "i386\|i686\|armhf\|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=knights
34+
SITE="pkgforge-dev/knights-appimage"
35+
version0=$(cat "/opt/$APP/version")
36+
version=$(curl -Ls https://api.github.com/repos/pkgforge-dev/knights-appimage/releases | sed 's/[()",{} ]/\n/g' | grep -oi "https.*download.*mage$" | grep -vi "i386\|i686\|armhf\|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)