mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
14 lines
227 B
YAML
14 lines
227 B
YAML
|
# $FreeBSD$
|
||
|
#
|
||
|
# MAINTAINER: portmgr@FreeBSD.org
|
||
|
|
||
|
actions: []
|
||
|
post-install: |
|
||
|
fmtutil-sys --missing >/dev/null
|
||
|
post-deinstall: |
|
||
|
set -- %@
|
||
|
for f in $@; do
|
||
|
rm -f $f
|
||
|
rmdir -p ${f%/*} 2>/dev/null
|
||
|
done
|