pkgsrc/textproc/verify-synopsis/files/verify-synopsis
wiz 0823624e1c Import verify-synopsis-1.0 as textproc/verify-synopsis.
This package contains a tool to verify that the functions in the
SYNOPSIS of a man page match the actual implementation.
2017-02-12 18:56:54 +00:00

4 lines
180 B
Bash
Executable file

#!/bin/sh
TMPFILE=/tmp/verify-synopsis.$$.c
mandoc -Ttree "$@" | awk -f @PREFIX@/libexec/dmpsynopsis.awk > "$TMPFILE" && gcc -c -o /dev/null -Wall "$TMPFILE" 2>&1
rm -f "$TMPFILE"