mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
17 lines
301 B
Text
17 lines
301 B
Text
# 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
|