e64454e133
Computer systems can provide an arithmetic that gives the results that people expect, instead of the results that binary floating point calculations give (see the sidebar on the right for an example). This is not available in Java today, so a decimal floating point arithmetic is needed.
23 lines
496 B
Makefile
23 lines
496 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/03/17 22:57:09 poppnk Exp $
|
|
#
|
|
|
|
DISTNAME= decimal
|
|
PKGNAME= java-BigDecimal-1.0
|
|
CATEGORIES= wip
|
|
MASTER_SITES= http://www2.hursley.ibm.com/decimalj/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pancake@phreaker.net
|
|
HOMEPAGE= http://www2.hursley.ibm.com/decimalj/
|
|
COMMENT= Decimal arithmetic for Java
|
|
|
|
WRKSRC= ${WRKDIR}/
|
|
USE_BUILDLINK3= yes
|
|
|
|
do-build:
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKDIR}/decimal.jar \
|
|
${PREFIX}/share/classpath/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|