Files
gentoo/dev-java/rat/rat-0.13.ebuild
Sam James 83ca3a98f9 dev-java/rat: drop trailing full stop from DESCRIPTION
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Sam James <sam@gentoo.org>
2021-12-26 00:17:59 +00:00

30 lines
658 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit java-pkg-2
DESCRIPTION="Apache Rat is a release audit tool, focused on licenses"
HOMEPAGE="https://creadur.apache.org/rat/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="
~dev-java/apache-rat-core-${PV}:0
~dev-java/apache-rat-tasks-${PV}:0
>=virtual/jre-1.8:*
"
S="${WORKDIR}"
src_compile() { :; }
src_install() {
default
java-pkg_register-dependency apache-rat-core,apache-rat-tasks
java-pkg_dolauncher "apache-${PN}" --jar $(java-pkg_getjar apache-rat-core apache-rat-core.jar) --main org.apache.rat.Report
}