local FONT_DIR=${INSTALL_ROOT}/usr/share/fonts/TTF
local INSTALL="install -m 644 -o root -g root"
mkdir  -p  $FONT_DIR       &&
$INSTALL *.ttf  $FONT_DIR  &&
if  [  -d  ${INSTALL_ROOT}/etc/fonts/  ];  then
  if  !  [  -e  ${INSTALL_ROOT}/etc/fonts/local.conf  ];  then
    $INSTALL local.conf ${INSTALL_ROOT}/etc/fonts
  fi
fi
