Skip to content

Commit

Permalink
allow AppimageLauncher to be installed in Debian
Browse files Browse the repository at this point in the history
  • Loading branch information
silentJET85 committed Sep 13, 2022
1 parent fb2ca3f commit 3211455
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion deb-get
Original file line number Diff line number Diff line change
Expand Up @@ -2446,7 +2446,19 @@ function deb_papirus-icon-theme() {
}

function deb_appimagelauncher() {
PPA="ppa:appimagelauncher-team/stable"
ARCHS_SUPPORTED="amd64 i386 armhf arm64"
case "${UPSTREAM_ID}" in
ubuntu)
PPA="ppa:appimagelauncher-team/stable"
;;
debian)
get_github_releases "https://api.github.com/repos/TheAssassin/AppImageLauncher/releases"
if [ "${ACTION}" != "prettylist" ]; then
URL="$(grep "browser_download_url.*${HOST_ARCH}\.deb\"" "${CACHE_DIR}/${APP}.json" | grep -v xenial | head -n1 | cut -d '"' -f4)"
VERSION_PUBLISHED="$(echo "${URL}" | cut -d '_' -f2 | cut -d '-' -f1)"
fi
;;
esac
PRETTY_NAME="AppImage Launcher"
WEBSITE="https://github.com/TheAssassin/AppImageLauncher"
SUMMARY="A free and open source MIT licensed app that makes your Linux desktop AppImage ready. Integrate AppImages to your application launcher with one click, and manage, update and remove them from there."
Expand Down

0 comments on commit 3211455

Please sign in to comment.