packages feed

orgmode-0.1.0.1: orgmode.cabal

-- Initial orgmode.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                orgmode
version:             0.1.0.1
synopsis:            Org Mode library for haskell
description:         A library to read and write emacs org-mode documents.
license:             BSD3
license-file:        LICENSE
author:              Lally Singh
maintainer:          yell@lal.ly
-- copyright:           
category:            Data
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

source-repository head
  type:     git
  location: https://github.com/lally/orgmode

flag network-uri
   description: Get Network.URI from the network-uri package
   default: True

library
  exposed-modules:     Data.OrgMode, Data.OrgMode.Text, Data.OrgMode.Doc, Data.OrgMode.OrgDocView
  build-depends:       base >= 4.7 && < 4.9, parsec, text, regex-posix,
                       containers, HStringTemplate >= 0.7.3, syb
  hs-source-dirs:      src
  default-language:    Haskell2010

Test-Suite spec
   type:              exitcode-stdio-1.0
  hs-source-dirs:    tests, src
  main-is:           MainTestSuite.hs
  build-depends:       base >= 4.7 && < 4.9, parsec, text, regex-posix, containers,
                       HStringTemplate >= 0.7.3, syb, QuickCheck, hspec >= 1.3, random
  if flag(network-uri)
     build-depends: network-uri >= 2.6, network >= 2.6
  else
     build-depends: network-uri < 2.6, network < 2.6

  -- Base language which the package is written in.
  default-language:    Haskell2010