blob: ed1904a80db873086ccfe2396085c05de446f204 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(rule
(with-stdout-to
nixtamal.1
(run %{bin:nixtamal} --help=groff)))
(rule
(targets nixtamal-manifest.5)
(deps manifest.rst)
(action
(with-stdout-to
nixtamal-manifest.5
(run rst2man --halt=4 --no-generator --language=en %{dep:manifest.rst}))))
(install
(package nixtamal)
(section man)
(files nixtamal.1 nixtamal-manifest.5))
|