diff options
author | Ian Lynagh <igloo@earth.li> | 2009-05-07 13:50:34 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-05-07 13:50:34 +0000 |
commit | 36091517e6b1d87b8dacd5168fcc464ac75f65bd (patch) | |
tree | 4f1cb4d37de6523ea2f0322462d30b46551137b2 /utils/ghc-pwd/ghc-pwd.cabal | |
parent | ed4beb8bc5e49d84e38b047c2dfc14eb22c74607 (diff) | |
download | haskell-36091517e6b1d87b8dacd5168fcc464ac75f65bd.tar.gz |
Rename pwd to ghc-pwd
Diffstat (limited to 'utils/ghc-pwd/ghc-pwd.cabal')
-rw-r--r-- | utils/ghc-pwd/ghc-pwd.cabal | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/utils/ghc-pwd/ghc-pwd.cabal b/utils/ghc-pwd/ghc-pwd.cabal new file mode 100644 index 0000000000..173b3cc1ee --- /dev/null +++ b/utils/ghc-pwd/ghc-pwd.cabal @@ -0,0 +1,24 @@ +Name: ghc-pwd +Version: 0.1 +Copyright: XXX +License: BSD +-- XXX License-File: LICENSE +-- XXX Author: +-- XXX Maintainer: +Synopsis: XXX +Description: + XXX +build-type: Simple +cabal-version: >=1.2 + +Flag base3 + Description: Choose the new smaller, split-up base package. + +Executable ghc-pwd + Main-Is: ghc-pwd.hs + if flag(base3) + Build-Depends: base >= 3 && < 5, + directory >= 1 && < 1.1 + else + Build-Depends: base < 3 + |