pkgsrc/textproc/namazu1/INSTALL
seb fa0f6e46a7 Reimport of package namazu from japanese/namazu1 into textproc/namazu1.
This is part of the japanese category retirement.
Pathnames to japanese/ adjusted.
2002-05-31 13:01:39 +00:00

27 lines
449 B
Text

#!/bin/sh
#
# $NetBSD: INSTALL,v 1.1.1.1 2002/05/31 13:01:39 seb Exp $
PKGNAME=$1
STAGE=$2
case ${STAGE} in
PRE-INSTALL)
;;
POST-INSTALL)
cat <<EOF
=============================================================
If you customize namazu configuration, copy
@DOCDIR@/namazu.conf-dist to
@CONFDIR@ and edit them.
=============================================================
EOF
;;
*)
echo "Unexpected argument: ${STAGE}"
exit 1
;;
esac
exit 0