mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-10 05:39:31 +03:00
80 lines
2.6 KiB
Plaintext
80 lines
2.6 KiB
Plaintext
name: hledger-web
|
|
version: 0.14
|
|
category: Finance
|
|
synopsis: A web interface for the hledger accounting tool.
|
|
description:
|
|
hledger is a haskell port and friendly fork of John Wiegley's ledger accounting tool.
|
|
This package provides a web interface as an alternative to the hledger command line interface.
|
|
|
|
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
|
|
stability: beta
|
|
tested-with: GHC==6.12
|
|
cabal-version: >= 1.6
|
|
build-type: Simple
|
|
data-dir: .hledger
|
|
data-files:
|
|
web/combo_select.gif
|
|
web/dhtmlxcombo.js
|
|
web/dhtmlxcommon.js
|
|
web/favicon.ico
|
|
web/hledger.js
|
|
web/jquery.js
|
|
web/jquery.url.js
|
|
web/style.css
|
|
extra-tmp-files:
|
|
extra-source-files:
|
|
|
|
source-repository head
|
|
type: darcs
|
|
location: http://joyful.com/repos/hledger
|
|
|
|
Flag production
|
|
Description: Build in production mode, which reads template files only once at startup.
|
|
Default: False
|
|
|
|
executable hledger-web
|
|
main-is: hledger-web.hs
|
|
ghc-options: -threaded -W
|
|
if flag(production)
|
|
cpp-options: -DPRODUCTION
|
|
other-modules:
|
|
Hledger.Web.Main
|
|
Hledger.Web.App
|
|
Hledger.Web.Files
|
|
Hledger.Web.Settings
|
|
build-depends:
|
|
hledger == 0.14
|
|
,hledger-lib == 0.14
|
|
-- ,HUnit
|
|
,base >= 3 && < 5
|
|
,bytestring
|
|
-- ,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.8 && < 0.9
|
|
-- ,convertible-text >= 0.3.0.1 && < 0.4
|
|
-- ,data-object >= 0.3.1.2 && < 0.4
|
|
,failure >= 0.1 && < 0.2
|
|
-- ,persistent == 0.2.*
|
|
-- ,persistent-sqlite == 0.2.*
|
|
,template-haskell >= 2.4 && < 2.6
|
|
,wai-extra == 0.4.*
|
|
,file-embed == 0.0.*
|