Files
bsdports/xfont/xf-code2000/pkg-deinstall
2019-12-26 07:26:06 +00:00

19 lines
286 B
Bash

#!/bin/sh
set -x
PREFIX=${PKG_PREFIX}
LOCALBASE=${PKG_PREFIX}
case $2 in
DEINSTALL)
;;
POST-DEINSTALL)
${LOCALBASE}/bin/fc-cache -fv
${LOCALBASE}/bin/mkfontdir ${PREFIX}/share/fonts/X11/TTF
${LOCALBASE}/bin/mkfontscale ${PREFIX}/share/fonts/X11/TTF
;;
esac
exit 0
#EOF