27 lines
448 B
Text
27 lines
448 B
Text
#!/bin/sh
|
|
#
|
|
# $NetBSD: INSTALL,v 1.1 2001/10/31 23:29:24 zuntum 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
|