diff options
-rwxr-xr-x | bin/pkg | 7 | ||||
-rw-r--r-- | doc/bootstrap | 12 |
2 files changed, 17 insertions, 2 deletions
@@ -158,7 +158,12 @@ populate_collected () { cd $PDIR/$1 || return info "Enabling documentation " if ([ -d doc ]) { - cp doc/* $PDIR/.collected/doc/ + for i in doc/*; { + if (podchecker $i &> /dev/null) { + pod2man -c "$1 Documentation" -r "" $i > $PDIR/.collected/man/man1/$(basename $i).1 + } + echo -n "." + } } if ([ -d bin ]) { for i in bin/*; { diff --git a/doc/bootstrap b/doc/bootstrap index 9eb306a..9dfbee9 100644 --- a/doc/bootstrap +++ b/doc/bootstrap @@ -1,6 +1,12 @@ +=head1 NAME + bootstrap - install the most essential utilities in $HOME. -Usage: ./bootstrap +=head1 SYNOPSIS + +B<./bootstrap> + +=head1 DESCRIPTION bootstrap will, in this order, do the following: @@ -12,3 +18,7 @@ bootstrap will, in this order, do the following: If not, receives a pre-build one via ssh/tar * Clone and then install the core repository + +=head1 AUTHOR + +Daniel Friesel <derf@derf.homelinux.org> |