Fabio Valentini
f579129792
Remove documentation for rust2rpm.conf file format from the README. The custom INI-based format is deprecated in favor of rust2rpm.toml. Both formats are documented, including a migration guide from the old to the new format. The included build script shows how to build man pages from the asciidoc source files.
7 lines
164 B
Bash
Executable file
7 lines
164 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
set -e
|
|
|
|
asciidoctor -b manpage rust2rpm.1.asciidoc
|
|
asciidoctor -b manpage rust2rpm.conf.5.asciidoc
|
|
asciidoctor -b manpage rust2rpm.toml.5.asciidoc
|