summaryrefslogtreecommitdiff
path: root/diddohs.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'diddohs.cabal')
-rw-r--r--diddohs.cabal51
1 files changed, 51 insertions, 0 deletions
diff --git a/diddohs.cabal b/diddohs.cabal
new file mode 100644
index 0000000..253fc7b
--- /dev/null
+++ b/diddohs.cabal
@@ -0,0 +1,51 @@
+-- Initial diddohs.cabal generated by cabal init. For further
+-- documentation, see http://haskell.org/cabal/users-guide/
+
+name: diddohs
+
+-- The package version. See the Haskell package versioning policy (PVP)
+-- for standards guiding when and how versions should be incremented.
+-- http://www.haskell.org/haskellwiki/Package_versioning_policy
+-- PVP summary: +-+------- breaking API changes
+-- | | +----- non-breaking API additions
+-- | | | +--- code changes with no API change
+version: 0.0.3
+synopsis: Time/Task Tracking, Analysis, Reporting
+description: Tool for tracking and reporting time/task
+homepage: https://projects.netwichtig.de/projects/sw-diddohs/
+license: BSD3
+license-file: LICENSE
+author: Hendrik Jaeger
+maintainer: code AT henk DOT geekmail DOT org
+-- copyright:
+category: Data
+build-type: Simple
+cabal-version: >=1.8
+
+executable diddohs
+ main-is: Main.hs
+ hs-source-dirs: src
+ -- other-modules:
+ build-depends: base ==4.6.*
+ , old-locale
+ , time
+ , text
+ , containers
+ , parsec
+
+ ghc-prof-options: -Wall -Werror -rtsopts -prof -fprof-auto -fhpc
+ ghc-options: -Wall -Werror -rtsopts -prof -fprof-auto -fhpc
+-- ghc-options: -Wall -rtsopts -eventlog -debug
+-- ghc-options: -Wall
+
+source-repository head
+ type: git
+ location: git://git.netwichtig.de/diddohs
+
+source-repository head
+ type: git
+ location: http://git.netwichtig.de/diddohs
+
+--test-suite Tests
+-- hs-source-dirs: test
+