mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 10:31:20 +02:00
19 lines
286 B
Bash
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
|