cli-setup: Helper setup scripts for packaging command-line tools.

[ bsd3, command-line-tools, development, library ] [ Propose Tags ]
This version is deprecated.

Provides functions to set up manpages and shell completions. Intended to be used in the Setup.hs module.


[Skip to Readme]

Modules

[Index] [Quick Jump]

Flags

Manual Flags

NameDescriptionDefault
development

Enable `-Werror`

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.2.0.0, 0.2.0.1, 0.2.0.2, 0.2.0.3, 0.2.0.4, 0.2.0.5, 0.2.0.6, 0.2.0.7, 0.2.1.0, 0.2.1.1, 0.2.1.2, 0.2.1.3, 0.2.1.4 (info)
Change log CHANGELOG.md
Dependencies base (>=4.6 && <5), bytestring, directory, file-embed (>=0.0.9), process (>=1.4.0.0) [details]
License BSD-3-Clause
Copyright Copyright: (c) 2018-2019 Vanessa McHale
Author Vanessa McHale
Maintainer vamchale@gmail.com
Category Development, Command Line Tools
Source repo head: darcs get https://hub.darcs.net/vmchale/cli-setup
Uploaded by vmchale at 2019-11-19T20:29:43Z
Distributions NixOS:0.2.1.4
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 8375 total (39 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-11-19 [all 1 reports]

Readme for cli-setup-0.2.1.1

[back to package description]

cli-setup

Example use taken from madlang's `Setup.hs` file:

import           Distribution.CommandLine
import           Distribution.Simple

main :: IO ()
main = setManpath *>
    writeManpages "man/madlang.1" "madlang.1" *>
    writeBashCompletions "madlang" *>
    defaultMain

Be sure to add man/madlang.1 (or whatever the path to your source file is) to your .cabal file's extra-source-files field.