desktop/r/r.install

15 lines
231 B
Plaintext
Raw Normal View History

post_install() {
if [[ -x /usr/bin/mktexlsr ]]; then
echo ">>> updating the filename database for texlive..."
mktexlsr --quiet usr/share/texmf
fi
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}