From 77232964371b988e8bc01d4025990a7bd4975af5 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Fri, 20 Nov 2009 00:18:03 -0500 Subject: [PATCH] build: Update cabal script for distribution. --- altfloat.cabal | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/altfloat.cabal b/altfloat.cabal index 14b5ea7..b5d9410 100644 --- a/altfloat.cabal +++ b/altfloat.cabal @@ -1,19 +1,30 @@ -Name: AltFloat -Version: 0.1 -License: BSD2 -License-File: LICENSE -Cabal-Version: >= 1.2 -Author: Nick Bowler -Maintainer: nbowler@draconx.ca -Stability: experimental -Category: Numerical -Synopsis: Alternative floating point support for GHC. -Build-Type: Simple +Name: altfloat +Version: 0.1 +License: BSD2 +License-File: LICENSE +Cabal-Version: >= 1.2 +Author: Nick Bowler +Maintainer: nbowler@draconx.ca +Stability: experimental +Category: Numerical +Build-Type: Simple +Extra-Source-Files: configure.ac, configure, altfloat.buildinfo.in, cfloat.h +Extra-Tmp-Files: altfloat.buildinfo, config.status config.log, config.cache +Synopsis: Alternative floating point support for GHC. +Description: + A replacement for the standard Haskell floating point types and supporting + functions. This library is intended to address issues such as strange or + or outright broken behaviour with respect to special values such as + infinities or NaNs, as well as fix general oddities found throughout the + standard library. + . + Also provided is an alternative to the standard Prelude which includes the + features from this library and the parts of the Prelude that do not + conflict. Library Build-Depends: base, ghc-prim, integer C-Sources: cfloat.c - Ghc-Options: -O2 Exposed-Modules: Data.Floating.Classes, Data.Floating.Types, -- 2.11.4.GIT