packages feed

cake-0.4.0.0: cake.cabal

name:           cake
version:        0.4.0.0
category:       Development
synopsis:       A build-system library and driver
description:
  Soon to appear.
license:        GPL
license-file:   LICENSE
author:         Jean-Philippe Bernardy
maintainer:     jeanphilippe.bernardy@gmail.com
Cabal-Version:  >= 1.12
tested-with:    GHC==7.4.1
build-type:     Simple

library
  default-language: Haskell2010
  --  extensions:  PackageImports, GeneralizedNewtypeDeriving, TypeSynonymInstances
  build-depends: base==4.*
  build-depends: derive==2.5.*
  build-depends: mtl==2.1.*
  build-depends: filepath==1.3.*  
  build-depends: process==1.1.*
  build-depends: binary==0.5.*
  build-depends: containers==0.4.*
  build-depends: directory==1.1.*
  build-depends: bytestring==0.9.*
  build-depends: pureMD5==2.1.*
  build-depends: split==0.1.*

  exposed-modules: Cake, Cake.Core, Cake.Rules, Cake.Process, Cake.Marxup, Parsek

executable cake
  default-language: Haskell2010
  build-depends: base==4.*
  build-depends: process==1.1.*
  build-depends: cmdargs==0.9.*
  build-depends: regex-tdfa==1.1.*
  build-depends: array==0.4.*
  build-depends: filepath==1.3.*  
  build-depends: directory==1.1.*

  main-is: Main.hs