blob: d926e3ebd649cd6756905cf4c70981df4727109a (
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 coffee4.sty
}
post_upgrade() {
post_install
}
post_remove() {
echo "Upgrading package database..."
mktexlsr
}
|