blob: c6d27618253604200331635ecb9b5ec775c8aa37 (
plain) (
tree)
|
|
# $FreeBSD$
#
# MAINTAINER: portmgr@FreeBSD.org
actions: [file]
post-install: <<EOD
case "%@" in
/*) file="%@" ;;
*) file="%D/%@" ;;
esac
indexinfo ${PKG_ROOTDIR}${file%/*}
EOD
post-deinstall: <<EOD
case "%@" in
/*) file="%@" ;;
*) file="%D/%@" ;;
esac
indexinfo ${PKG_ROOTDIR}${file%/*}
EOD
|