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