mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: bdffe3dbbc
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
23 lines
521 B
Bash
23 lines
521 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit java-pkg-2
|
|
|
|
DESCRIPTION="Command line tool for rundeck"
|
|
HOMEPAGE="https://www.rundeck.com"
|
|
SRC_URI="https://github.com/rundeck/rundeck-cli/releases/download/v${PV}/rundeck-cli-${PV}-all.jar"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND=">=virtual/jre-11:*"
|
|
|
|
src_install() {
|
|
java-pkg_newjar "${DISTDIR}"/rundeck-cli-${PV}-all.jar rundeck-cli.jar
|
|
java-pkg_dolauncher rd
|
|
}
|