packages feed

shake-extras-0.1: shake-extras.cabal

name:                shake-extras
version:             0.1
synopsis:            Extra utilities for shake build systems
description:
  This package is designed to add supporting modules for the Shake
  build system, that shouldn't be included in the core package.
homepage:            http://thoughtpolice.github.com/shake-extras
bug-reports:         http://github.com/thoughtpolice/shake-extras/issues
license:             BSD3
license-file:        LICENSE.txt
copyright:           Copyright (c) Austin Seipp 2012
author:              Austin Seipp <mad.one@gmail.com>
maintainer:          Austin Seipp <mad.one@gmail.com>
category:            Database
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC == 7.0.4,
                     GHC == 7.2.1, GHC == 7.2.2,
                     GHC == 7.4.1

extra-source-files:
  AUTHORS.txt README.md

source-repository head
  type: git
  location: https://github.com/thoughtpolice/shake-extras.git

library
  exposed-modules:
    Development.Shake.CLI
    Development.Shake.Imports
  build-depends:
    base       >= 4 && < 5,
    filepath,
    directory,
    bytestring,
    shake      == 0.3,
    cmdargs    >= 0.9

  ghc-options:        -Wall -O2 -funbox-strict-fields
                      -fwarn-tabs
  default-extensions: CPP
  default-language:   Haskell2010

-- test-suite properties
--   hs-source-dirs: tests
--   main-is:        Properties.hs
--   type:           exitcode-stdio-1.0
-- 
--   build-depends:
--     base       >= 4,
--     shake-extras
-- 
--   ghc-options:      -Wall -fno-cse -fno-warn-orphans
--                     -threaded -rtsopts
--   default-language: Haskell2010