mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-24 01:09:38 +01:00
jd-cli-bin-1.2.0.ebuild
This commit is contained in:
parent
73c5e15c34
commit
cfaaa4dcad
2 changed files with 27 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST jd-cli-1.1.0.Final-dist.tar.gz 1439527 BLAKE2B e7cdcc8bfc31c1e91826c4087b76a859a48bc015c525971b3c4cf1cdb31a40fcd0d1c2e2b7ba121372d76954c8293e8c49d595a58eff4332f92dbafb9269c35c SHA512 bb2008d306fd541395af397b820027834d3e4b4650f00f3c1dcc072fa5068d0db48d2fbc8c81d210682667adc0f9c193911e772ee1401fb3b165901f6b61b9e9
|
||||
DIST jd-cli-1.2.0-dist.tar.gz 1448122 BLAKE2B d4e588931701a7d48c0df338a15d4027e49ce5c17c38d3af020804d57f95cdeb6f1cf2662dbf8b72b80460fcaefcd179b52b742f6d7e6bb7eb9f2b6947ceec3c SHA512 46e618fdb8bde363cdb8caedce38b18d14306b476a1ffed333f5073f193184222775cee4c2e4fc099580818984554c3df73c8f7935dcb25074c74ef813b9c586
|
||||
|
|
|
|||
26
dev-util/jd-cli-bin/jd-cli-bin-1.2.0.ebuild
Normal file
26
dev-util/jd-cli-bin/jd-cli-bin-1.2.0.ebuild
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="Command line Java Decompiler"
|
||||
HOMEPAGE="https://github.com/kwart/jd-cli"
|
||||
SRC_URI="https://github.com/kwart/jd-cli/releases/download/jd-cli-${PV}/jd-cli-${PV}-dist.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="GPL-3"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="|| ( virtual/jre virtual/jdk )"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
#upsteam can't make up its mind: https://github.com/kwart/jd-cmd/issues/40
|
||||
src_install() {
|
||||
insinto "/opt/jd-cli/"
|
||||
doins jd-cli.jar
|
||||
cp jd-cli "${ED}"/opt/jd-cli/
|
||||
dosym "${EPREFIX}"/opt/jd-cli/jd-cli /usr/bin/jd-cli
|
||||
}
|
||||
Loading…
Reference in a new issue