mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 18:41:17 +02:00
20 lines
373 B
Plaintext
20 lines
373 B
Plaintext
# $FreeBSD: head/Keywords/info.ucl 399974 2015-10-22 13:30:32Z bapt $
|
|
#
|
|
# 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
|