Talking about #Calckey. I found a more efficient way to install it, by directly patching the existing #Misskey installer for @yunohost . To get the latest version and checksum, visit https://codeberg.org/calckey/calckey/releases and download the tarball, then run sha256sum on it. Then substitute it on the script below and run it on your server:
#!/bin/bash version='13.0.5' checksum='97a19c8f4e58e3dfb7085a0aca0d48540a5b39e3fabec3a623aad866de634c74' git clone https://github.com/YunoHost-Apps/misskey_ynh mv misskey_ynh calckey_ynh cd ./calckey_ynh find ./ -type f -not -ipath "*.git" -exec sed -i 's/misskey-hub.net/i.calckey.cloud/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/github.com\/misskey-dev/codeberg.org\/thatonecalculator/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/misskey/calckey/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/Misskey/Calckey/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/refs\/tags\/[0-9]*.[0-9]*.[0-9]*/v'$version'/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/[0-9]*.[0-9]*.[0-9]*~ynh[0-9]/'$version'~ynh1/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/SOURCE_SUM=[0-9a-f]*/SOURCE_SUM='$checksum'/g' {} \; cd .. sudo yunohost app install ./calckey_ynh --force