You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-crypt/jacksum/jacksum-1.7.0.ebuild

34 lines
763 B

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit java-pkg-2 java-ant-2
DESCRIPTION="Java utility for computing and verifying checksums: CRC*, MD*, RIPEMD*, SHA*, TIGER*, WHIRLPOOL"
HOMEPAGE="http://www.jonelo.de/java/jacksum/"
SRC_URI="mirror://sourceforge/jacksum/${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=virtual/jdk-1.3.1
dev-java/ant-core
app-arch/unzip"
RDEPEND=">=virtual/jre-1.3.1"
S="${WORKDIR}"
src_unpack() {
unpack ${A}
cd "${S}"
unzip -qq source/${PN}-src.zip || die "failed to unpack source"
rm *.jar
}
src_install() {
java-pkg_dojar ${PN}.jar
dodoc history.txt readme.txt help/${PN}/*
java-pkg_dolauncher ${PN} --jar ${PN}.jar
}