mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
2a0b64c734
the stage then they are now rebuild in post-installation, like it is done in other package system
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
|