diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | README.pod | 22 | ||||
| -rw-r--r-- | docs/cpuinfo.1 | 2 |
3 files changed, 25 insertions, 1 deletions
@@ -30,6 +30,8 @@ documentation: pod2man --release="$(NAME) $$(cat .version)" \ --center="User Commands" ./docs/$(NAME).pod > ./docs/$(NAME).1 pod2text ./docs/$(NAME).pod > ./docs/$(NAME).txt + # For github page + cp ./docs/$(NAME).pod README.pod # Build a debian package (don't sign it, modify the arguments if you want to sign it) deb: all diff --git a/README.pod b/README.pod new file mode 100644 index 0000000..63ccb43 --- /dev/null +++ b/README.pod @@ -0,0 +1,22 @@ +=head1 NAME + +cpuinfo - A small and humble tool to print out CPU data + +=head1 SYNOPSIS + +cpuinfo + +=head2 How this works? + +This just invokes AWK to parse /proc/cpuinfo and prints out some stuff but +human readable. + +=head1 LICENSE + +See package description or project website. + +=head1 AUTHOR + +Paul Buetow - <http://cpuinfo.buetow.org> + +=cut diff --git a/docs/cpuinfo.1 b/docs/cpuinfo.1 index 601416c..f9db8bb 100644 --- a/docs/cpuinfo.1 +++ b/docs/cpuinfo.1 @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "CPUINFO 1" -.TH CPUINFO 1 "2013-07-26" "cpuinfo 1.0.1" "User Commands" +.TH CPUINFO 1 "2014-06-22" "cpuinfo 1.0.1" "User Commands" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l |
