mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
6df5d51437
Arithmetic (via S4 classes and methods) for arbitrary precision floating point numbers, including transcendental ("special") functions. To this end, Rmpfr interfaces to the LGPL'ed MPFR (Multiple Precision Floating-Point Reliable) Library which itself is based on the GMP (GNU Multiple Precision) Library. WWW: https://cran.r-project.org/web/packages/Rmpfr/ Submitted by: Jukka A. Ukkonen <jau_AT_iki_DOT_fi> (via private e-mail)
21 lines
404 B
Makefile
21 lines
404 B
Makefile
# Created by: Jukka A. Ukkonen <jau@iki.fi>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Rmpfr
|
|
DISTVERSION= 0.6-0
|
|
CATEGORIES= math
|
|
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
|
|
|
MAINTAINER= tota@FreeBSD.org
|
|
COMMENT= R wrapper for the mpfr multiple precision library
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
LIB_DEPENDS= libgmp.so:math/gmp \
|
|
libmpfr.so:math/mpfr
|
|
RUN_DEPENDS= R-cran-gmp>=0.5.8:math/R-cran-gmp
|
|
|
|
USES= cran:auto-plist
|
|
|
|
.include <bsd.port.mk>
|