summaryrefslogtreecommitdiff
path: root/japanese/namazu2/pkg/INSTALL
blob: 65a7306dfd2e74795875c248a3987acff972f715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.1.1.1 2001/01/27 02:29:25 taca Exp $

PKGNAME=$1
STAGE=$2

case ${STAGE} in
PRE-INSTALL)
	;;
POST-INSTALL)
	cat <<EOF

=============================================================
If you customize namazu configuration, copy
@EXAMPLEDIR@/share/namazu/namazurc.default and
@EXAMPLEDIR@/mknmzrc.default to @CONFDIR@,
and edit them.
=============================================================

EOF
	;;
*)
	echo "Unexpected argument: ${STAGE}"
	exit 1
	;;
esac
exit 0