blob: f9a2d6c88a83a8dd917609ed8fa5e794a751b07d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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
|