stitch
Note taking for messy minimalists
git clone git://mccd.space/stitch| Log | Files | Refs | README | LICENSE | Mail |
dune (506B)
1 (executable
2 (public_name stitch)
3 (package stitch)
4
5 (name main)
6 (libraries
7 stitch
8 unix
9 cmdliner
10 str
11 notty
12 notty.unix
13 shexp.process
14 lambda-term))
15
16 (env
17 (release-static
18 (ocamlc_flags (-g))
19 (ocamlopt_flags (-g))
20 (flags (:standard -cclib -static -cclib -no-pie -w -40))))
21 ; Rule to generate a man page for stitch
22 (rule
23 (target stitch.1)
24 (action (with-stdout-to %{target} (run stitch --help=groff)))
25 )
26
27 (install
28 (section man)
29 (files stitch.1)
30 (package stitch)
31 )