diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-02-07 20:11:21 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-02-07 22:03:14 +0300 |
commit | 2a8e96b6ae012bea0a9c9b8b8912ebdf42bdf0e7 (patch) | |
tree | 1545fc02045d1965aacbb82e39699a5b4d9073f0 /doc/cli.sh | |
parent | 7006a66f56a472681b3c67a47b690368810dda30 (diff) |
Add copyright variable substitution in doc/cli.sh
Diffstat (limited to 'doc/cli.sh')
-rwxr-xr-x | doc/cli.sh | 31 |
1 files changed, 23 insertions, 8 deletions
@@ -1,7 +1,6 @@ #! /usr/bin/env bash version=0.13.0-a.0.z -date="$(date +"%B %Y")" trap 'exit 1' ERR set -o errtrace # Trap in functions. @@ -9,6 +8,9 @@ set -o errtrace # Trap in functions. function info () { echo "$*" 1>&2; } function error () { info "$*"; exit 1; } +date="$(date +"%B %Y")" +copyright="$(sed -n -re 's%^Copyright \(c\) (.+)\.$%\1%p' ../COPYRIGHT)" + while [ $# -gt 0 ]; do case $1 in --clean) @@ -36,14 +38,26 @@ function compile () shift done - cli -I .. -v project="build2" -v version="$version" -v date="$date" \ ---include-base-last "${o[@]}" --generate-html --html-prologue-file \ -man-prologue.xhtml --html-epilogue-file man-epilogue.xhtml --html-suffix \ -.xhtml ../build2/$n.cli + cli -I .. \ +-v project="build2" \ +-v version="$version" \ +-v date="$date" \ +-v copyright="$copyright" \ +--include-base-last "${o[@]}" \ +--generate-html --html-suffix .xhtml \ +--html-prologue-file man-prologue.xhtml \ +--html-epilogue-file man-epilogue.xhtml \ +../build2/$n.cli - cli -I .. -v project="build2" -v version="$version" -v date="$date" \ ---include-base-last "${o[@]}" --generate-man --man-prologue-file \ -man-prologue.1 --man-epilogue-file man-epilogue.1 --man-suffix .1 \ + cli -I .. \ +-v project="build2" \ +-v version="$version" \ +-v date="$date" \ +-v copyright="$copyright" \ +--include-base-last "${o[@]}" \ +--generate-man --man-suffix .1 \ +--man-prologue-file man-prologue.1 \ +--man-epilogue-file man-epilogue.1 \ ../build2/$n.cli } @@ -78,6 +92,7 @@ function compile_doc () # <file> <prefix> <suffix> cli -I .. \ -v version="$(echo "$version" | sed -e 's/^\([^.]*\.[^.]*\).*/\1/')" \ -v date="$date" \ +-v copyright="$copyright" \ --generate-html --html-suffix .xhtml \ --html-prologue-file doc-prologue.xhtml \ --html-epilogue-file doc-epilogue.xhtml \ |