11 lines
316 B
Plaintext
11 lines
316 B
Plaintext
#!/bin/sh
|
|
# $OpenBSD: INSTALL,v 1.2 2003/02/04 22:59:48 naddy Exp $
|
|
if [ "$2" != "POST-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
if ! which gs >/dev/null; then
|
|
echo "I can't find ghostscript (gs) in your search path."
|
|
echo "Please install your favorite version of ghostscript,"
|
|
echo "otherwise this program is useless."
|
|
fi
|