Update isd-bin to 0.4.1 and use desktop entry from upstream

This commit is contained in:
Sravan Balaji 2025-02-01 16:00:46 -05:00
parent fd39cb920b
commit c1b6619077
3 changed files with 7 additions and 18 deletions

View File

@ -1,2 +1,2 @@
DIST isd-bin-0.3.0.AppImage 84307344 BLAKE2B 59974ccaf53ee52cc6cd8052c1ae63c823799ef2d5e31255e82448530837d9b53a06435b32eb0be859b5da85314516af9d0348c1304c6756f816189a903105d5 SHA512 c1ea2620359c9dce8794e855b3de9e3de6dce96f63c9c6bbf07842781643f67436e3e12f1f25da0ba93d95c70428afce546bc036f58ec9b5070093279cf29d16
DIST isd-bin-0.3.0.tar.gz 338588 BLAKE2B 820b9a0b5247faad2686192bdc21673001e249b0f5a24376804eb907ac46dbec89f5f95440e444e9be2505f6a042b9833f03f6862a194372b5eb09109a26158e SHA512 933d1bc5c1165129dfcd5a522c4232ee35888df91d24214185bda539a6b827c57123de2a072182e9afd7adc1faed157d77c2dac221c93c413a4e06f87e040f36
DIST isd-bin-0.4.1.AppImage 85118352 BLAKE2B 3fc0fa9b7b409c0e9dac5f86f9d1402129009fa9f0bd810c61c7954d2fbe08241a657f884e9ce0424b1fdb530d70c0a000f8e397276b7f9a8081b59e1ac72aa1 SHA512 1ebd6c13c0eaeefdee52a9107c87862156be8f1c95c2f39204478ee03d7e9a423d33175613b7d520ac91c7a6f2f8f2bdf46ffce6c47bbfd866f6b62e960407da
DIST isd-bin-0.4.1.tar.gz 300782 BLAKE2B e04f6321a08bfe7575aa3b58367339bfca5307ac43b7e98d8285d090563ec21213c1c37b6ce9d10eceb477d06bdb42583307bf7bfe198239b193be8511b3529a SHA512 d060b04b630c18f40989c53265308a35c08b101130ad78832b192cf9f8dfb13795a8ab4e973f92f2bf8942f615e2adbc0e07beb041eec2fc9aa746637563eee8

View File

@ -1,11 +0,0 @@
[Desktop Entry]
Type=Application
Version=1.0
Name=isd
GenericName=Interactive Systemd
Comment=A better way to work with systemd units
Icon=isd
Exec=isd
Terminal=true
Categories=System;Monitor;ConsoleOnly;
Keywords=system;process;task

View File

@ -6,7 +6,7 @@ EAPI=8
DESCRIPTION="isd (interactive systemd) - a better way to work with systemd units"
HOMEPAGE="https://isd-project.github.io/isd"
SRC_URI="
https://github.com/isd-project/isd/releases/download/v${PV}/isd.AppImage -> ${P}.AppImage
https://github.com/isd-project/isd/releases/download/v${PV}/isd.x86_64-linux.AppImage -> ${P}.AppImage
https://github.com/isd-project/isd/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
"
@ -28,11 +28,11 @@ src_install() {
cp ${DISTDIR}/${P}.AppImage isd || die
dobin isd
cd ${S}/assets
insinto /usr/share/icons/hicolor/1024x1024/apps
cd ${S}/share/icons/hicolor/512x512/apps
insinto /usr/share/icons/hicolor/512x512/apps
doins isd.png
# Add version to desktop file
cd ${S}/share/applications
insinto /usr/share/applications
doins ${FILESDIR}/isd.desktop
doins isd.desktop
}