pure-rational provides additional operations on the rational number type

provided by the math.pure module in the standard library.

WWW:	http://docs.pure-lang.googlecode.com/hg/pure-rational.html

PR:		ports/161422
Submitted by:	Zhihao Yuan <lichray@gmail.com>
Approved by:	sahil (mentor)
This commit is contained in:
Eitan Adler 2011-10-15 19:36:40 +00:00
parent d5901782d4
commit a418a6d776
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=283584
4 changed files with 34 additions and 0 deletions

View File

@ -475,6 +475,7 @@
SUBDIR += prng
SUBDIR += proofgeneral
SUBDIR += pspp
SUBDIR += pure-rational
SUBDIR += py-apgl
SUBDIR += py-basemap
SUBDIR += py-basemap-data

View File

@ -0,0 +1,27 @@
# New ports collection makefile for: pure-rational
# Date created: 2011-10-09
# Whom: Zhihao Yuan <lichray@gmail.com>
#
# $FreeBSD$
#
PORTNAME= pure-rational
PORTVERSION= 0.1
CATEGORIES= math
MASTER_SITES= http://pure-lang.googlecode.com/files/
MAINTAINER= lichray@gmail.com
COMMENT= Rational number library for the Pure language
LIB_DEPENDS+= pure:${PORTSDIR}/lang/pure
LICENSE= GPLv3
PLIST_FILES= lib/pure/rational.pure \
lib/pure/rat_interval.pure
USE_GMAKE= yes
MAKE_ARGS+= prefix=${PREFIX}
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (pure-rational-0.1.tar.gz) = c6b52330d45cb2b79c4bbfa748d9eccb796abd3b354d3d3d663d325f4eceeb1b
SIZE (pure-rational-0.1.tar.gz) = 44687

View File

@ -0,0 +1,4 @@
pure-rational provides additional operations on the rational number type
provided by the math.pure module in the standard library.
WWW: http://docs.pure-lang.googlecode.com/hg/pure-rational.html