425 B
425 B
README
Build man pages with ronn
.
- Install Ruby and
gem
- Install
gem install bundler
or via system packagebundler
- 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