mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
20 lines
287 B
Plaintext
20 lines
287 B
Plaintext
# $FreeBSD$
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
actions: [file]
|
|
post-install: <<EOD
|
|
case "%@" in
|
|
/*) file="%@" ;;
|
|
*) file="%D/%@" ;;
|
|
esac
|
|
indexinfo ${file%/*}
|
|
EOD
|
|
post-deinstall: <<EOD
|
|
case "%@" in
|
|
/*) file="%@" ;;
|
|
*) file="%D/%@" ;;
|
|
esac
|
|
indexinfo ${file%/*}
|
|
EOD
|