blob: 5b6bb7deaa68a5f40dfc41849188195136568515 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
post_remove
echo "The file was installed in:"
kpsewhich mbboard.sty
}
post_upgrade() {
post_install
}
post_remove() {
echo "Upgrading package database..."
mktexlsr
}
|