cdcc0bea0e
the symlink isn't tracked in the PLIST and won't be correctly removed from any views during instance deletion from a view.
14 lines
256 B
Text
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
|