2010-09-10 02:54:34 +04:00
|
|
|
name: hledger-web
|
|
|
|
version: 0.12.98
|
|
|
|
category: Finance
|
|
|
|
synopsis: A hledger add-on command providing a web interface.
|
|
|
|
description:
|
2010-12-07 05:15:49 +03:00
|
|
|
A hledger add-on command providing a web interface.
|
2010-09-10 02:54:34 +04:00
|
|
|
license: GPL
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Simon Michael <simon@joyful.com>
|
2010-09-11 05:47:46 +04:00
|
|
|
maintainer: Simon Michael <simon@joyful.com>
|
2010-09-10 02:54:34 +04:00
|
|
|
homepage: http://hledger.org
|
|
|
|
bug-reports: http://code.google.com/p/hledger/issues
|
2010-09-11 05:47:46 +04:00
|
|
|
stability: alpha
|
|
|
|
tested-with: GHC==6.12
|
2010-09-10 02:54:34 +04:00
|
|
|
cabal-version: >= 1.6
|
|
|
|
build-type: Simple
|
|
|
|
data-dir: data
|
|
|
|
data-files:
|
|
|
|
static/style.css
|
|
|
|
static/hledger.js
|
|
|
|
static/jquery.js
|
|
|
|
static/jquery.url.js
|
|
|
|
static/dhtmlxcommon.js
|
|
|
|
static/dhtmlxcombo.js
|
2010-09-11 05:47:46 +04:00
|
|
|
static/favicon.ico
|
2010-09-10 02:54:34 +04:00
|
|
|
static/images/combo_select.gif
|
2010-09-11 05:47:46 +04:00
|
|
|
templates/addform.hamlet
|
|
|
|
templates/addformpostingfields.hamlet
|
|
|
|
templates/default-layout.cassius
|
|
|
|
templates/default-layout.hamlet
|
|
|
|
templates/homepage.cassius
|
|
|
|
templates/homepage.hamlet
|
|
|
|
templates/homepage.julius
|
2010-09-10 02:54:34 +04:00
|
|
|
extra-tmp-files:
|
|
|
|
extra-source-files:
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: darcs
|
|
|
|
location: http://joyful.com/repos/hledger
|
|
|
|
|
2010-09-11 05:47:46 +04:00
|
|
|
Flag production
|
|
|
|
Description: Build in production mode, which reads templates only once at startup.
|
|
|
|
Default: False
|
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
executable hledger-web
|
|
|
|
main-is: Main.hs
|
|
|
|
ghc-options: -threaded -W
|
2010-09-11 05:47:46 +04:00
|
|
|
if flag(production)
|
|
|
|
cpp-options: -DPRODUCTION
|
2010-09-10 02:54:34 +04:00
|
|
|
other-modules:
|
2010-09-11 05:47:46 +04:00
|
|
|
Hledger.Web.App
|
|
|
|
Hledger.Web.Settings
|
2010-09-10 02:54:34 +04:00
|
|
|
build-depends:
|
|
|
|
hledger == 0.12.98
|
|
|
|
,hledger-lib == 0.12.98
|
|
|
|
-- ,HUnit
|
|
|
|
,base >= 3 && < 5
|
|
|
|
-- ,containers
|
|
|
|
-- ,csv
|
|
|
|
-- ,directory
|
|
|
|
,filepath
|
|
|
|
-- ,mtl
|
|
|
|
-- ,old-locale
|
|
|
|
-- ,old-time
|
|
|
|
,parsec
|
|
|
|
-- ,process
|
|
|
|
-- ,regexpr >= 0.5.1
|
|
|
|
-- ,safe >= 0.2
|
|
|
|
-- ,split == 0.1.*
|
|
|
|
-- ,time
|
|
|
|
-- ,utf8-string >= 0.3.5 && < 0.4
|
|
|
|
,io-storage >= 0.3 && < 0.4
|
|
|
|
,yesod >= 0.5.0.3 && < 0.6
|
|
|
|
,hamlet == 0.5.*
|
|
|
|
,convertible-text >= 0.3.0.1 && < 0.4
|
|
|
|
,data-object >= 0.3.1.2 && < 0.4
|
|
|
|
,failure >= 0.1 && < 0.2
|
2010-09-11 05:47:46 +04:00
|
|
|
,persistent == 0.2.*
|
|
|
|
,persistent-sqlite == 0.2.*
|
|
|
|
,template-haskell == 2.4.*
|
|
|
|
,wai-extra == 0.2.*
|