Imported Debian patch 1.2.1-1
[debian/splat] / docs / spanish / man / docmaker
1 #!/bin/bash
2 # This script builds the man page, pdf, and postscript
3 # and text documentation from the groff source "splat.man".
4 echo -n "Creating postscript file... "
5 groff -e -T ps -man splat.man > ../postscript/splat.ps
6 echo
7 echo -n "Creating man page... "
8 groff -e -T ascii -man splat.man > splat.1
9 echo
10 echo -n "Creating text file... "
11 ul -t dumb splat.1 > ../text/splat.txt
12 echo
13 echo -n "Creating pdf file... "
14 ps2pdf ../postscript/splat.ps ../pdf/splat.pdf
15 echo
16 echo "Done!"