mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
5fdb8cb0f9
FastJar is a version of JDK's `jar' utility written entirely in C, and therefore quite a bit faster. Currently some features such as updating archive are unimplemented, but enough seems implemented. WWW: http://fastjar.sourceforge.net Obtained from: NetBSD pkgsrc
26 lines
556 B
Makefile
26 lines
556 B
Makefile
# New ports collection makefile for: fastjar
|
|
# Version required: 0.90
|
|
# Date created: 18 March 2000
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= fastjar-0.90
|
|
CATEGORIES= archivers java
|
|
MASTER_SITES= http://download.sourceforge.net/fastjar/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= knu@idaemons.org
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/fastjar
|
|
cd ${WRKSRC} && ${INSTALL_DATA} CHANGES README ${PREFIX}/share/doc/fastjar/
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|