blob: eb41a05bcee30b24de7fa9dbfc0bf71db1dae6fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Anthony VanBerkum <anthonyvbop AT gmail DOT com>
# Contributor: David Gippner davidgippner at googlemail dot com
post_install() {
_tex_update
}
post_upgrade() {
_tex_update
echo "Be sure to check https://github.com/gregorio-project/gregorio/releases for any changes required in your TeX files."
}
post_remove() {
_tex_update
}
_tex_update() {
echo "Updating TeX database..."
texhash
}
|