mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 03:44:37 +08:00
17 lines
439 B
Plaintext
17 lines
439 B
Plaintext
post_install() {
|
|
# Update LaTeX db to point to SageTeX
|
|
if [ -f /usr/bin/texhash ]; then
|
|
/usr/bin/texhash /usr/share/texmf
|
|
else
|
|
echo 'Warning: could not find /usr/bin/texhash'
|
|
echo 'SageTeX has been installed but you need to run:'
|
|
echo '# texhash /usr/share/texmf'
|
|
echo 'So that LaTeX will be able to find it.'
|
|
fi
|
|
}
|
|
|
|
post_remove() {
|
|
if [ -f /usr/bin/texhash ]; then
|
|
/usr/bin/texhash /usr/share/texmf
|
|
fi
|
|
} |