diff options
author | wen <wen@FreeBSD.org> | 2012-02-02 20:56:00 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2012-02-02 20:56:00 +0800 |
commit | 2b147b3cb590d989d82e6ed072e5dfd852a2a34b (patch) | |
tree | 44b876b5064eccee7119b2ec4f2dfbd4169560ca | |
parent | 0e27cdec194407d6e2d23e8dbeed7d1635c9a9de (diff) | |
download | freebsd-ports-gnome-2b147b3cb590d989d82e6ed072e5dfd852a2a34b.tar.gz freebsd-ports-gnome-2b147b3cb590d989d82e6ed072e5dfd852a2a34b.tar.zst freebsd-ports-gnome-2b147b3cb590d989d82e6ed072e5dfd852a2a34b.zip |
This library provides implementations of special mathematical functions
and Chebyshev polynomials. These functions are often useful in statistical
and numerical computing.
WWW: https://github.com/bos/math-functions
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/hs-math-functions/Makefile | 24 | ||||
-rw-r--r-- | math/hs-math-functions/distinfo | 2 | ||||
-rw-r--r-- | math/hs-math-functions/pkg-descr | 5 |
4 files changed, 32 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 7f63f1245262..b7b3dd4875b6 100644 --- a/math/Makefile +++ b/math/Makefile @@ -144,6 +144,7 @@ SUBDIR += hs-contravariant SUBDIR += hs-distributive SUBDIR += hs-erf + SUBDIR += hs-math-functions SUBDIR += hs-mwc-random SUBDIR += hs-pointed SUBDIR += hs-probability diff --git a/math/hs-math-functions/Makefile b/math/hs-math-functions/Makefile new file mode 100644 index 000000000000..0e10205c9dd6 --- /dev/null +++ b/math/hs-math-functions/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: hs-math-functions +# Date created: Feb 2, 2012 +# Whom: Wen Heping<wen@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= math-functions +PORTVERSION= 0.1.1.0 +CATEGORIES= math haskell + +MAINTAINER= wen@FreeBSD.org +COMMENT= Special mathematical functions and Chebyshev polynomials + +LICENSE= BSD + +USE_CABAL= erf>=2 vector>=0.7 + +CABAL_SETUP= Setup.hs + +PORTDATA= * + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/math/hs-math-functions/distinfo b/math/hs-math-functions/distinfo new file mode 100644 index 000000000000..e5504280a046 --- /dev/null +++ b/math/hs-math-functions/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/math-functions-0.1.1.0.tar.gz) = 97ceb088f1249d697d95d41ebb8759087c3bb9d00cd5d9c667e885f6dd826061 +SIZE (cabal/math-functions-0.1.1.0.tar.gz) = 12422 diff --git a/math/hs-math-functions/pkg-descr b/math/hs-math-functions/pkg-descr new file mode 100644 index 000000000000..efb668ac39fe --- /dev/null +++ b/math/hs-math-functions/pkg-descr @@ -0,0 +1,5 @@ +This library provides implementations of special mathematical functions +and Chebyshev polynomials. These functions are often useful in statistical +and numerical computing. + +WWW: https://github.com/bos/math-functions |