blob: 8dcb5005006da5587de5ed68d410241e5e75e4b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
#
# $NetBSD: INSTALL,v 1.2 2002/06/20 19:28:35 jlam Exp $
case ${STAGE} in
POST-INSTALL)
for file in au coda-setup-ports codaconfedit; do
if [ ! -f ${PKG_PREFIX}/sbin/${file} ]; then
${LN} -sf vice-${file} ${PKG_PREFIX}/sbin/${file}
fi
done
;;
esac
|