repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git]
/
hlatex
/
hlatex.install
blob
3d6d26f9d353435b7953ddaf347d8b5381758deb
1
# arg 1: the new package version
2
post_install() {
3
echo -n "Running texhash..."
4
texhash
5
echo "Done."
6
}
7
8
# arg 1: the new package version
9
# arg 2: the old package version
10
post_upgrade() {
11
/bin/true
12
}
13
14
# arg 1: the old package version
15
post_remove() {
16
echo -n "Running texhash..."
17
texhash
18
echo "Done."
19
}
20
21
op=$1
22
shift
23
$op $*