packages feed

hoodle-0.2: hoodle.cabal

Name:		hoodle
Version:	0.2
Synopsis:	Executable for hoodle
Description: 	Hoodle is a pen notetaking program written in haskell. 
Homepage:       http://ianwookim.org/hoodle
License: 	GPL-3
License-file:	LICENSE
Author:		Ian-Woo Kim
Maintainer: 	Ian-Woo Kim <ianwookim@gmail.com>
Category:       Application
Tested-with:    GHC == 7.0
Build-Type: 	Custom
Cabal-Version:  >= 1.8
data-files:     CHANGES
Source-repository head
  type: git
  location: http://www.github.com/wavewave/hoodle

Executable hoodle
  Main-is: hoodle.hs
  hs-source-dirs: exe
  ghc-options: 	-Wall -threaded -funbox-strict-fields -fno-warn-unused-do-bind
  ghc-prof-options: -caf-all -auto-all
  Build-Depends: 
                 base>4, 
                 cmdargs >= 0.7, 
                 hoodle-core >= 0.9.999, 
                 hoodle 

Library
  hs-source-dirs: lib
  ghc-options: 	-Wall -funbox-strict-fields -fno-warn-unused-do-bind
  ghc-prof-options: -caf-all -auto-all
  Build-Depends:   base == 4.*, 
                   mtl == 2.*,
                   directory == 1.*,
                   filepath == 1.*, 
                   containers >= 0.4,
                   cmdargs >= 0.7,
                   configurator == 0.2.*,
                   dyre >= 0.8.11, 
                   hoodle-core == 0.10
  Exposed-Modules: 
                   Hoodle.ProgType
                   Hoodle.Job
                   Hoodle.Command 
                   Hoodle.StartUp
  Other-Modules: 
                   Paths_hoodle