Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow AppimageLauncher to be installed in Debian #521

Merged
merged 1 commit into from
Sep 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion deb-get
Original file line number Diff line number Diff line change
Expand Up @@ -2481,7 +2481,12 @@ function deb_papirus-icon-theme() {
}

function deb_appimagelauncher() {
PPA="ppa:appimagelauncher-team/stable"
ARCHS_SUPPORTED="amd64 i386 armhf arm64"
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
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