Update manpages script for komodo

This commit is contained in:
Duke Leto
2018-03-04 04:33:53 +00:00
parent f37f614e24
commit e78e9fa3e3

View File

@@ -4,25 +4,25 @@ TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)}
SRCDIR=${SRCDIR:-$TOPDIR/src} SRCDIR=${SRCDIR:-$TOPDIR/src}
MANDIR=${MANDIR:-$TOPDIR/doc/man} MANDIR=${MANDIR:-$TOPDIR/doc/man}
ZCASHD=${ZCASHD:-$SRCDIR/zcashd} KOMODOD=${KOMODOD:-$SRCDIR/komodod}
ZCASHCLI=${ZCASHCLI:-$SRCDIR/zcash-cli} KOMODOCLI=${KOMODOCLI:-$SRCDIR/komodo-cli}
ZCASHTX=${ZCASHTX:-$SRCDIR/zcash-tx} KOMODOTX=${KOMODOTX:-$SRCDIR/komodo-tx}
[ ! -x $ZCASHD ] && echo "$ZCASHD not found or not executable." && exit 1 [ ! -x $KOMODOD ] && echo "$KOMODOD not found or not executable." && exit 1
# The autodetected version git tag can screw up manpage output a little bit # The autodetected version git tag can screw up manpage output a little bit
ZECVER=($($ZCASHCLI --version | head -n1 | awk -F'[ -]' '{ print $5, $6 }')) KMDVER=($($KOMODOCLI --version | head -n1 | awk -F'[ -]' '{ print $5, $6 }'))
# Create a footer file with copyright content. # Create a footer file with copyright content.
# This gets autodetected fine for zcashd if --version-string is not set, # This gets autodetected fine for komodod if --version-string is not set,
# but has different outcomes for zcash-cli. # but has different outcomes for komodo-cli.
echo "[COPYRIGHT]" > footer.h2m echo "[COPYRIGHT]" > footer.h2m
$ZCASHD --version | sed -n '1!p' >> footer.h2m $KOMODOD --version | sed -n '1!p' >> footer.h2m
for cmd in $ZCASHD $ZCASHCLI $ZCASHTX; do for cmd in $KOMODOD $KOMODOCLI $KOMODOTX; do
cmdname="${cmd##*/}" cmdname="${cmd##*/}"
help2man -N --version-string=${ZECVER[0]} --include=footer.h2m -o ${MANDIR}/${cmdname}.1 ${cmd} help2man -N --version-string=${KMDVER[0]} --include=footer.h2m -o ${MANDIR}/${cmdname}.1 ${cmd}
sed -i "s/\\\-${ZECVER[1]}//g" ${MANDIR}/${cmdname}.1 sed -i "s/\\\-${KMDVER[1]}//g" ${MANDIR}/${cmdname}.1
done done
rm -f footer.h2m rm -f footer.h2m