jd-gui-bin: 1.4.3 bump

This commit is contained in:
blshkv 2019-05-13 10:39:10 +08:00
parent b0e55d105e
commit 9bd985b8cd
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 36 additions and 0 deletions

View file

@ -1,2 +1,3 @@
DIST jd-gui-1.4.1.rpm 8832316 BLAKE2B 29b4fa841ef0b0e848ba9709f11ee6da3ea824a2322a2db815f87e115439ce6b9c9409f6d6716c9806483de6986ecb17a4f21e40bf03802523face4e4b270b88 SHA512 32b965027ed2a0ad218fe89179c7f34478dc42949983bfc2f94b849b84af70243e88471310f4bf4fe8be22be9b2a898c3d2dffedc2159e2904810737f34c8ce2
DIST jd-gui-1.4.2.rpm 2730039 BLAKE2B 6b78fbd16ab2f59d184ff86d14d2620b9ff56651eca169965557ed10bf9e11fe863910aeea5526859c8b3bb17487e10c7aebf8a4c029353d87e828706b590da6 SHA512 3eca2eabe3245c37e12c267cd891a33ac3e685ba97621f536588f6a93f98f9ae9adb96bfd41f0e6315ed9beb89678c7752e36779f9a74fbf205cb939dcd76ec7
DIST jd-gui-1.4.3.rpm 2733888 BLAKE2B 165b3c1e36372c068f4cf6066118f369ca7d7eaad3b2ed96b612c082570950967ed56460ec5499bef42553568344b5d96b8ec890749193859dc796853e0d2f16 SHA512 583818e14d5cbd98575a2d48275687d9e251234aa86ccccd2a22a0465663939309a0506bda223e74df448d3f1a998eb8e0f2f247029d178a242a4af180fa2c01

View file

@ -0,0 +1,35 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_PN="jd-gui"
MY_P="jd-gui-${PV}"
inherit eutils multilib rpm
DESCRIPTION="A standalone graphical utility that displays Java source codes of .class file"
HOMEPAGE="http://jd.benow.ca/"
SRC_URI="https://github.com/java-decompiler/jd-gui/releases/download/v${PV}/${MY_P}.rpm"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="virtual/jre"
S="${WORKDIR}/opt/jd-gui"
src_install() {
dodir /opt/"${MY_PN}"
insinto /opt/"${MY_PN}"
doins "${MY_P}.jar"
doicon jd_icon_128.png
domenu jd-gui.desktop
echo -e "#!/bin/sh\njava -jar /opt/${MY_PN}/${MY_P}.jar >/dev/null 2>&1 &\n" > "${MY_PN}"
dobin "${MY_PN}"
}