hledger/hledger-web/hledger-web.cabal

278 lines
9.5 KiB
Plaintext
Raw Normal View History

name: hledger-web
-- also in cpp-options below
2013-05-01 23:46:37 +04:00
version: 0.20
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
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
templates/default-layout.hamlet
templates/default-layout-wrapper.hamlet
templates/homepage.hamlet
templates/homepage.julius
templates/homepage.lucius
templates/normalize.lucius
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_4
description: Use the older 0.4 version of blaze-html.
default: False
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
2013-05-01 23:46:37 +04:00
cpp-options: -DVERSION="0.20"
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.7 && < 1.2
2012-11-24 19:35:09 +04:00
, yesod-static >= 1.1 && < 1.2
, yesod-default >= 1.1 && < 1.2
, yesod-form >= 1.1 && < 1.3
, clientsession
2012-11-24 19:35:09 +04:00
, 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.10
2012-11-24 19:35:09 +04:00
, directory >= 1.1 && < 1.3
, warp >= 1.3 && < 1.4
, data-default
2013-05-01 23:46:37 +04:00
, hledger == 0.20
, hledger-lib == 0.20
, cmdargs >= 0.10 && < 0.11
, directory
, filepath
, HUnit
, network-conduit
, old-locale
, parsec
, regexpr >= 0.5.1
, safe >= 0.2
, time
, transformers
, wai
, wai-extra
, wai-handler-launch >= 1.3 && < 1.4
, warp
, yaml
if flag(blaze_html_0_4)
cpp-options: -DBLAZE_HTML_0_4
build-depends:
blaze-html >= 0.4 && < 0.5
else
build-depends:
blaze-html >= 0.5 && < 0.7
, blaze-markup >= 0.5.1 && < 0.7
executable hledger-web
2013-05-01 23:46:37 +04:00
cpp-options: -DVERSION="0.20"
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
2013-05-01 23:46:37 +04:00
, hledger == 0.20
, hledger-lib == 0.20
, base >= 4.3 && < 5
, cmdargs >= 0.10 && < 0.11
2012-05-29 06:53:33 +04:00
, directory
, filepath
, HUnit
, old-locale
, parsec
, regexpr >= 0.5.1
, safe >= 0.2
, time
-- , yesod-platform == 1.1.*
, yesod >= 1.1.3 && < 1.2
, yesod-core >= 1.1.7 && < 1.2
2012-05-29 06:53:33 +04:00
, 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
, wai-handler-launch >= 1.3 && < 1.4
2012-05-29 06:53:33 +04:00
, warp
, yaml
, hjsmin >= 0.1 && < 0.2
, http-conduit >= 1.8 && < 1.10
2012-11-24 19:35:09 +04:00
, data-default
if flag(blaze_html_0_4)
cpp-options: -DBLAZE_HTML_0_4
build-depends:
blaze-html >= 0.4 && < 0.5
else
build-depends:
blaze-html >= 0.5 && < 0.7
, blaze-markup >= 0.5.1 && < 0.7
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 >= 1.1.7 && < 1.2