mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-02-26 01:22:19 +01:00
jd-gui-bin: v1.4.0 bump
This commit is contained in:
parent
2fe99a534e
commit
b9056fa8f7
2 changed files with 45 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST jd-gui-0.3.5.linux.i686.tar.gz 1087841 SHA256 1bb7b12a6072091a434eab98f3f041c1f1e81ec0eeb04022dede0ca485fe3b4b SHA512 17342891e5f7e84317a211429b2f9026284a74a095bfe85ca1053c4ba2eb6aa14675e0722ddb352199fe28c69416cb1c8107704a8364b624970b491a19092855 WHIRLPOOL e221c0699199a28230d1d086b6762ad818a31a4ab2cec701f7ff48f4c36816c274c6523ed95b06b663c98817810c18aaa07e7ea9dc88511bcf19e6252af7c87b
|
||||
DIST jd-gui-1.4.0-0.noarch.rpm 7900421 SHA256 551942cba60e60c9c9e1686529d59d45123a9de7567a8d29a6ea1b21eabc1ae5 SHA512 98e281448f0eb97ac8ece517c6e3fc3d642b41552b2b9db1c20e85ac8628849f4ef47cdd6c8d6ee4a22f694377f2ee7d8bd78715579866d5195fd69266f87d4b WHIRLPOOL ba4ff1fa81b8e7ae1b16a706e6cbe10c94a2e3aa80a86df0a5d3c112e21d11d50f41aef5bba2029cbd69abad7c6240651567c6617d518d78d31b6b2108f97a93
|
||||
|
|
|
|||
44
dev-util/jd-gui-bin/jd-gui-bin-1.4.0.ebuild
Normal file
44
dev-util/jd-gui-bin/jd-gui-bin-1.4.0.ebuild
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="5"
|
||||
|
||||
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}-0.noarch.rpm"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="x86 amd64"
|
||||
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}"
|
||||
}
|
||||
|
||||
#pkg_postinst() {
|
||||
# einfo "JD-GUI is free for non-commercial use."
|
||||
# einfo "This means that JD-GUI shall not be included or embedded into commercial software products. "
|
||||
# einfo "Nevertheless, JD-GUI may be freely used for personal needs in a commercial or non-commercial environments."
|
||||
# ewarn "JD-GUI creates a jd-gui.cfg file in the current working directory."
|
||||
# ewarn "Make sure you run it in a directory you can remove afterwards"
|
||||
#}
|
||||
Loading…
Reference in a new issue