43 lines
789 B
Plaintext
43 lines
789 B
Plaintext
#! /bin/sh
|
|
# $OpenBSD: INSTALL,v 1.2 2000/08/18 21:46:00 brad Exp $
|
|
#
|
|
# Pre/port-installation setup of WindowMaker
|
|
|
|
# exit on errors, use a sane path and install prefix
|
|
#
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
|
|
do_notice()
|
|
{
|
|
echo
|
|
echo "***"
|
|
echo "Each user must run $PREFIX/bin/wmaker.inst before running Window Maker."
|
|
echo "***"
|
|
echo
|
|
if [ -d /etc/WindowMaker ]; then
|
|
echo "***"
|
|
echo "The directory /etc/WindowMaker may be removed."
|
|
echo "***"
|
|
echo
|
|
fi
|
|
}
|
|
|
|
# Verify/process the command
|
|
#
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
: nothing to pre-install for this port
|
|
;;
|
|
POST-INSTALL)
|
|
do_notice $1
|
|
;;
|
|
*)
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|