fa0f6e46a7
This is part of the japanese category retirement. Pathnames to japanese/ adjusted.
27 lines
449 B
Text
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
|