packages feed

hebrew-time-0.1.0.2: hebrew-time.cabal

name:            hebrew-time
version:         0.1.0.2
license:         BSD3
license-file:    LICENSE
author:          Michael Snoyman <michael@snoyman.com>
maintainer:      Michael Snoyman <michael@snoyman.com>
synopsis:        Hebrew dates and prayer times.
description:     Conversion to and from Hebrew dates.
category:        Data
stability:       stable
cabal-version:   >= 1.2
build-type:      Simple
homepage:        http://github.com/snoyberg/hebrew-time/tree/master

flag buildtests
  description: Build the executable to run unit tests
  default: False

library
    build-depends:   base >= 4 && < 5,
                     time >= 1.1.3
    exposed-modules: Data.Time.Calendar.Hebrew
    ghc-options:     -Wall

executable           runtests
    if flag(buildtests)
        Buildable: True
        cpp-options:     -DTEST
        build-depends:   test-framework,
                         test-framework-quickcheck,
                         test-framework-hunit,
                         HUnit,
                         QuickCheck >= 1 && < 2
    else
        Buildable: False
    ghc-options:     -Wall
    main-is:         runtests.hs