hledger/hledger-web/hledger-web.cabal

272 lines
9.2 KiB
Plaintext
Raw Normal View History

name: hledger-web
-- also in cpp-options below
2012-11-28 03:53:16 +04:00
version: 0.19.4
category: Finance
synopsis: A web interface for the hledger accounting tool.
description:
hledger is a library and set of user tools for working
with financial data (or anything that can be tracked in a
double-entry accounting ledger.) It is a haskell port and
friendly fork of John Wiegley's Ledger. hledger provides
command-line, curses and web interfaces, and aims to be a
reliable, practical tool for daily use.
license: GPL
license-file: LICENSE
author: Simon Michael <simon@joyful.com>
maintainer: Simon Michael <simon@joyful.com>
homepage: http://hledger.org
bug-reports: http://code.google.com/p/hledger/issues
2010-11-26 22:59:23 +03:00
stability: beta
2012-11-27 09:31:31 +04:00
tested-with: GHC==7.4.2, GHC==7.6.1
cabal-version: >= 1.8
build-type: Simple
extra-tmp-files:
extra-source-files:
2012-11-16 21:08:54 +04:00
messages/en.msg
config/routes
static/combo_select.gif
static/css/bootstrap.css
static/dhtmlxcombo.js
static/dhtmlxcommon.js
static/excanvas.min.js
static/favicon.ico
static/hledger.js
static/img/glyphicons-halflings-white.png
static/img/glyphicons-halflings.png
static/jquery.flot.js
static/jquery.js
static/jquery.url.js
static/style.css
source-repository head
type: darcs
location: http://hub.darcs.net/simon/hledger
-- Flag production
-- Description: Build fully optimised and with web files embedded (not loaded from ./static/)
-- Default: True
flag threaded
Description: Build with support for multithreaded execution.
Default: True
flag blaze_html_0_5
description: Use the newer 0.5 version of blaze-html and blaze-markup.
default: True
flag dev
Description: Turn on development settings, like auto-reload templates.
Default: False
flag library-only
Description: Build for use with "yesod devel"
Default: False
library
hs-source-dirs: . app
exposed-modules: Application
Foundation
Import
Settings
Settings.StaticFiles
Settings.Development
Handler.Common
Handler.JournalEditR
Handler.JournalEntriesR
Handler.JournalR
Handler.Post
Handler.RegisterR
Handler.RootR
Handler.Utils
other-modules:
Hledger.Web
Hledger.Web.Main
Hledger.Web.Options
-- if flag(library-only)
-- Buildable: True
-- else
-- Buildable: False
2012-11-16 21:08:27 +04:00
ghc-options: -Wall -fno-warn-unused-do-bind
2012-11-28 03:53:16 +04:00
cpp-options: -DVERSION="0.19.4"
if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
EmptyDataDecls
NoMonomorphismRestriction
RecordWildCards
2012-11-24 19:35:09 +04:00
build-depends: base >= 4 && < 5
-- , yesod-platform >= 1.1 && < 1.2
, yesod >= 1.1.3 && < 1.2
, yesod-core >= 1.1.2 && < 1.2
, yesod-static >= 1.1 && < 1.2
, yesod-default >= 1.1 && < 1.2
, yesod-form >= 1.1 && < 1.3
2012-11-24 19:35:09 +04:00
, clientsession >= 0.8 && < 0.9
, bytestring >= 0.9 && < 0.11
, text >= 0.11 && < 0.12
, template-haskell
, hamlet >= 1.1 && < 1.2
, shakespeare-css >= 1.0 && < 1.1
, shakespeare-js >= 1.0 && < 1.2
2012-11-24 19:35:09 +04:00
, shakespeare-text >= 1.0 && < 1.1
, hjsmin >= 0.1 && < 0.2
, monad-control >= 0.3 && < 0.4
, wai-extra >= 1.3 && < 1.4
, yaml >= 0.8 && < 0.9
, http-conduit >= 1.8 && < 1.9
, directory >= 1.1 && < 1.3
, warp >= 1.3 && < 1.4
, data-default
2012-11-28 03:53:16 +04:00
, hledger == 0.19.4
, hledger-lib == 0.19.4
, cmdargs >= 0.10 && < 0.11
, directory
, filepath
, HUnit
, io-storage >= 0.3 && < 0.4
, network-conduit
, old-locale
, parsec
, regexpr >= 0.5.1
, safe >= 0.2
, time
, transformers
, wai
, wai-extra
, warp
, yaml
if flag(blaze_html_0_5)
cpp-options: -DBLAZE_HTML_0_5
build-depends:
blaze-html >= 0.5 && < 0.6
, blaze-markup >= 0.5.1 && < 0.6
else
build-depends:
blaze-html >= 0.4 && < 0.5
executable hledger-web
2012-11-28 03:53:16 +04:00
cpp-options: -DVERSION="0.19.4"
if flag(library-only)
Buildable: False
if flag(dev)
cpp-options: -DDEVELOPMENT
ghc-options: -O0 -Wall -fno-warn-unused-do-bind
else
ghc-options: -O2 -Wall -fno-warn-unused-do-bind
if flag(threaded)
ghc-options: -threaded
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
OverloadedStrings
MultiParamTypeClasses
TypeFamilies
RecordWildCards
hs-source-dirs: . app
main-is: main.hs
other-modules:
Application
Foundation
Import
Settings
Settings.StaticFiles
Settings.Development
Handler.Common
Handler.JournalEditR
Handler.JournalEntriesR
Handler.JournalR
Handler.Post
Handler.RegisterR
Handler.RootR
Handler.Utils
Hledger.Web
Hledger.Web.Main
Hledger.Web.Options
build-depends:
hledger-web
2012-11-28 03:53:16 +04:00
, hledger == 0.19.4
, hledger-lib == 0.19.4
, base >= 4.3 && < 5
, cmdargs >= 0.10 && < 0.11
2012-05-29 06:53:33 +04:00
, directory
, filepath
, HUnit
, io-storage >= 0.3 && < 0.4
, old-locale
, parsec
, regexpr >= 0.5.1
, safe >= 0.2
, time
-- , yesod-platform == 1.1.*
, yesod >= 1.1.3 && < 1.2
2012-05-29 06:53:33 +04:00
, yesod-core
, yesod-default
, yesod-static
, clientsession
, hamlet
, network-conduit
, shakespeare-text
, template-haskell
, text
, transformers
2012-05-29 06:53:33 +04:00
, wai
, wai-extra
, warp
, yaml
, hjsmin >= 0.1 && < 0.2
, http-conduit >= 1.8 && < 1.9
2012-11-24 19:35:09 +04:00
, data-default
if flag(blaze_html_0_5)
cpp-options: -DBLAZE_HTML_0_5
build-depends:
blaze-html >= 0.5 && < 0.6
, blaze-markup >= 0.5.1 && < 0.6
else
build-depends:
blaze-html >= 0.4 && < 0.5
test-suite test
type: exitcode-stdio-1.0
main-is: main.hs
hs-source-dirs: tests
ghc-options: -Wall
build-depends:
base
, hledger-web
, yesod-test >= 0.3 && < 0.4
, yesod-default
, yesod-core