# odt is setup with a bultintemplate for convertions
#from text, that uses Liberation Mono font.
#we need DejaVu Serif. We change the font and repack
#the odt file
unzip -qq -d $tmpdir $file.odt
rm -f $file.odt
find $tmpdir -type f | xargs sed -i 's/Liberation Mono/DejaVu Serif/g'
( cd $tmpdir; zip -qq -r ../$file.odt . )