blob: 9f51c848384fe164c93766c12a7e52b0ba465e15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit java-pkg-2 java-ant-2
DESCRIPTION="Java utility for computing and verifying checksums: CRC*, MD*, etc."
HOMEPAGE="https://jacksum.loefflmann.net/en/"
SRC_URI="mirror://sourceforge/project/jacksum/${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
DEPEND=">=virtual/jdk-1.8:*
dev-java/ant-core"
RDEPEND=">=virtual/jre-1.8:*"
BDEPEND="app-arch/unzip"
S="${WORKDIR}"
src_unpack() {
default
unpack ./source/${PN}-src.zip
rm *.jar || die
}
src_install() {
java-pkg_dojar ${PN}.jar
dodoc history.txt readme.txt help/${PN}/*
java-pkg_dolauncher ${PN} --jar ${PN}.jar
}
|