diff options
Diffstat (limited to '')
-rw-r--r-- | bin/dune | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -14,3 +14,15 @@ lambda-term)) +; Rule to generate a man page for stitch +(rule + (target stitch.1) + (action (with-outputs-to %{target} (run stitch --help=groff))) +) + +; Install the man page +(install + (section man) + (files stitch.1) + (package stitch) +) |