system-helpers/_man
2022-06-30 00:13:32 +02:00
..
src Add restic-report example and systemd service files 2022-06-30 00:13:32 +02:00
.gitignore Add man pages and separate properly between global systemd and user systemd services and timers 2022-06-13 11:31:59 +02:00
Gemfile Add man pages and separate properly between global systemd and user systemd services and timers 2022-06-13 11:31:59 +02:00
Gemfile.lock Add man pages and separate properly between global systemd and user systemd services and timers 2022-06-13 11:31:59 +02:00
README.md Add man pages and separate properly between global systemd and user systemd services and timers 2022-06-13 11:31:59 +02:00

README

Build man pages with ronn.

  • Install Ruby and gem
  • Install gem install bundler or via system package bundler
  • Execute the following to build and serve via Jekyll
bundle config set --local path 'vendor/bundle'
bundle install
# generate man pages in /usr/share/man/man1
for file in src/*.ronn; do bn=$(basename $file .ronn); bundle exec ronn --pipe < $file > ../usr/share/man/man1/$bn; done