summaryrefslogtreecommitdiff
path: root/libraries/integer-gmp2/integer-gmp.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/integer-gmp2/integer-gmp.cabal')
-rw-r--r--libraries/integer-gmp2/integer-gmp.cabal64
1 files changed, 64 insertions, 0 deletions
diff --git a/libraries/integer-gmp2/integer-gmp.cabal b/libraries/integer-gmp2/integer-gmp.cabal
new file mode 100644
index 0000000000..3e87f03a93
--- /dev/null
+++ b/libraries/integer-gmp2/integer-gmp.cabal
@@ -0,0 +1,64 @@
+name: integer-gmp
+version: 1.0.0.0
+synopsis: Integer library based on GMP
+license: BSD3
+license-file: LICENSE
+author: Herbert Valerio Riedel
+maintainer: hvr@gnu.org
+category: Numeric, Algebra
+build-type: Configure
+cabal-version: >=1.10
+
+extra-source-files:
+ aclocal.m4
+ cbits/wrappers.c
+ config.guess
+ config.sub
+ configure
+ configure.ac
+ gmp/config.mk.in
+ include/HsIntegerGmp.h.in
+ integer-gmp.buildinfo.in
+
+extra-tmp-files:
+ autom4te.cache
+ config.log
+ config.status
+ gmp/config.mk
+ integer-gmp.buildinfo
+ include/HsIntegerGmp.h
+
+library
+ default-language: Haskell2010
+ other-extensions:
+ BangPatterns
+ CApiFFI
+ CPP
+ DeriveDataTypeable
+ ExplicitForAll
+ GHCForeignImportPrim
+ MagicHash
+ NegativeLiterals
+ NoImplicitPrelude
+ RebindableSyntax
+ StandaloneDeriving
+ UnboxedTuples
+ UnliftedFFITypes
+ build-depends: ghc-prim
+ hs-source-dirs: src/
+ ghc-options: -this-package-key integer-gmp -Wall
+ cc-options: -std=c99 -Wall
+
+ include-dirs: include
+ c-sources:
+ cbits/wrappers.c
+
+ exposed-modules:
+ GHC.Integer
+ GHC.Integer.Logarithms
+ GHC.Integer.Logarithms.Internals
+
+ GHC.Integer.GMP.Internals
+
+ other-modules:
+ GHC.Integer.Type