summaryrefslogtreecommitdiff
path: root/utils/hpc/hpc-bin.cabal
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-07-18 17:00:47 +0000
committerIan Lynagh <igloo@earth.li>2008-07-18 17:00:47 +0000
commit763ff8ece976a1de1093cd35f82393e13aa7db70 (patch)
tree620053660e1b1b340e93d8cfe30847c49f764267 /utils/hpc/hpc-bin.cabal
parentd8ee31a38b280e69c0b19e19992fc1df9c84c08c (diff)
downloadhaskell-763ff8ece976a1de1093cd35f82393e13aa7db70.tar.gz
Build hpc with Cabal
Diffstat (limited to 'utils/hpc/hpc-bin.cabal')
-rw-r--r--utils/hpc/hpc-bin.cabal30
1 files changed, 30 insertions, 0 deletions
diff --git a/utils/hpc/hpc-bin.cabal b/utils/hpc/hpc-bin.cabal
new file mode 100644
index 0000000000..f980e4db62
--- /dev/null
+++ b/utils/hpc/hpc-bin.cabal
@@ -0,0 +1,30 @@
+Name: hpc-bin
+-- XXX version number:
+Version: 0.67
+Copyright: XXX
+License: BSD3
+-- XXX License-File: LICENSE
+Author: XXX
+Maintainer: XXX
+Synopsis: XXX
+Description:
+ XXX
+Category: Development
+build-type: Simple
+cabal-version: >=1.2
+
+Flag base3
+ Description: Choose the new smaller, split-up base package.
+
+Executable hpc
+ Main-Is: Hpc.hs
+ if flag(base3)
+ Build-Depends: base >= 3 && < 4,
+ directory >= 1 && < 1.1,
+ containers >= 0.1 && < 0.2,
+ array >= 0.1 && < 0.2
+ else
+ Build-Depends: base < 3
+ Build-Depends: haskell98, hpc
+ Extensions: CPP
+