hledger/hledger/package.yaml
2017-09-12 19:09:00 -07:00

210 lines
4.8 KiB
YAML

name: hledger
version: '1.3.99'
synopsis: Command-line interface for the hledger accounting tool
description: |
This is hledger's command-line interface.
Its basic function is to read a plain text file describing
financial transactions and produce useful reports.
hledger is a cross-platform program for tracking money, time, or
any other commodity, using double-entry accounting and a simple,
editable file format. It is inspired by and largely compatible
with ledger(1). hledger provides command-line, curses and web
interfaces, and aims to be a reliable, practical tool for daily
use.
category: Finance, Console
license: GPL-3
author: Simon Michael <simon@joyful.com>
maintainer: Simon Michael <simon@joyful.com>
github: simonmichael/hledger
homepage: http://hledger.org
bug-reports: http://bugs.hledger.org
stability: stable
tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.1
extra-source-files:
- CHANGES
- README.md
- test/test.hs
- bench/10000x1000x10.journal
data-files:
- doc/hledger.1
- doc/hledger.1.txt
- doc/hledger.1.info
- doc/other/hledger-api.1
- doc/other/hledger-api.1.txt
- doc/other/hledger-api.1.info
- doc/other/hledger-ui.1
- doc/other/hledger-ui.1.txt
- doc/other/hledger-ui.1.info
- doc/other/hledger-web.1
- doc/other/hledger-web.1.txt
- doc/other/hledger-web.1.info
- doc/other/hledger_journal.5
- doc/other/hledger_journal.5.txt
- doc/other/hledger_journal.5.info
- doc/other/hledger_csv.5
- doc/other/hledger_csv.5.txt
- doc/other/hledger_csv.5.info
- doc/other/hledger_timeclock.5
- doc/other/hledger_timeclock.5.txt
- doc/other/hledger_timeclock.5.info
- doc/other/hledger_timedot.5
- doc/other/hledger_timedot.5.txt
- doc/other/hledger_timedot.5.info
flags:
terminfo:
description: On POSIX systems, build with the terminfo lib for detecting terminal width.
manual: false
default: true
threaded:
description: Build with support for multithreaded execution
manual: false
default: true
ghc-options:
- -Wall
- -fno-warn-unused-do-bind
- -fno-warn-name-shadowing
- -fno-warn-missing-signatures
- -fno-warn-type-defaults
- -fno-warn-orphans
dependencies:
- base >=4.8 && <5
- base-compat >=0.8.1
- ansi-terminal >= 0.6.2.3 && < 0.8
- directory
- file-embed >=0.0.10 && <0.1
- filepath
- here
- pretty-show >=1.6.4
- process
- shakespeare >=2.0.2.2 && <2.1
- temporary
- tabular >=0.2 && <0.3
- time >=1.5
- hledger-lib >= 1.3.99 && < 1.4
when:
- condition: (!(os(windows))) && (flag(terminfo))
dependencies:
- terminfo
library:
cpp-options: -DVERSION="1.3.99"
exposed-modules:
- Hledger.Cli
- Hledger.Cli.Main
- Hledger.Cli.CliOptions
- Hledger.Cli.DocFiles
- Hledger.Cli.Utils
- Hledger.Cli.Version
- Hledger.Cli.Commands
- Hledger.Cli.Commands.Accounts
- Hledger.Cli.Commands.Activity
- Hledger.Cli.Commands.Add
- Hledger.Cli.Commands.Balance
- Hledger.Cli.Commands.Balancesheet
- Hledger.Cli.Commands.Balancesheetequity
- Hledger.Cli.Commands.Cashflow
- Hledger.Cli.Commands.Checkdates
- Hledger.Cli.Commands.Checkdupes
- Hledger.Cli.Commands.Help
- Hledger.Cli.Commands.Incomestatement
- Hledger.Cli.Commands.Print
- Hledger.Cli.Commands.Register
- Hledger.Cli.Commands.Stats
- Hledger.Cli.CompoundBalanceCommand
- Text.Tabular.AsciiWide
dependencies:
- bytestring
- containers
- unordered-containers
- cmdargs >=0.10 && <0.11
- csv
- data-default >=0.5
- hashable >=1.2.4
- haskeline >=0.6 && <=0.8
- HUnit
- mtl
- mtl-compat
- old-time
- megaparsec >=5.0 && < 6.2
- regex-tdfa
- safe >=0.2
- split >=0.1 && <0.3
- transformers
- text >=0.11
- utf8-string >=0.3.5 && <1.1
- wizards ==1.0.*
executables:
hledger:
source-dirs: app
main: hledger-cli.hs
cpp-options: -DVERSION="1.3.99"
when:
- condition: flag(threaded)
ghc-options: -threaded
dependencies:
- hledger
- bytestring
- containers
- unordered-containers
- cmdargs >=0.10 && <0.11
- csv
- data-default >=0.5
- haskeline >=0.6 && <=0.8
- HUnit
- mtl
- mtl-compat
- old-time
- parsec >=3
- regex-tdfa
- safe >=0.2
- split >=0.1 && <0.3
- text >=0.11
- utf8-string >=0.3.5 && <1.1
- wizards ==1.0.*
tests:
test:
source-dirs: test
main: test.hs
cpp-options: -DVERSION="1.3.99"
dependencies:
- hledger
- bytestring
- containers
- unordered-containers
- cmdargs >=0.10 && <0.11
- csv
- data-default >=0.5
- haskeline >=0.6 && <=0.8
- HUnit
- mtl
- mtl-compat
- old-time
- parsec >=3
- regex-tdfa
- safe >=0.2
- split >=0.1 && <0.3
- text >=0.11
- utf8-string >=0.3.5 && <1.1
- wizards ==1.0.*
- test-framework
- test-framework-hunit
benchmarks:
bench:
source-dirs: bench
main: bench.hs
dependencies:
- hledger
- criterion
- html
- timeit