sravan-overlay/sys-apps/isd-bin/isd-bin-0.2.0.ebuild
2025-01-25 19:13:13 -05:00

28 lines
547 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
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"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="strip"
RDEPEND="
sys-fs/fuse:0
"
S="${WORKDIR}"
QA_PREBUILT="*"
src_install() {
cd ${WORKDIR}
cp ${DISTDIR}/${P}.AppImage isd || die
dobin isd
}