pkgsrc/databases/postgresql-lib/INSTALL
jlam cdcc0bea0e Adding and removing the pgsql symlink must take place at VIEW-* time since
the symlink isn't tracked in the PLIST and won't be correctly removed from
any views during instance deletion from a view.
2004-01-21 08:59:32 +00:00

14 lines
256 B
Text

#!/bin/sh
#
# $NetBSD: INSTALL,v 1.2 2004/01/21 08:59:32 jlam Exp $
case ${STAGE} in
VIEW-INSTALL)
${RM} -f ${PKG_PREFIX}/include/pgsql
${LN} -fs postgresql ${PKG_PREFIX}/include/pgsql
;;
VIEW-DEINSTALL)
${RM} -f ${PKG_PREFIX}/include/pgsql
;;
esac