updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / fuzz / fuzz.install
blobea08e57fb842384c3ab156d31ea4423bf37033a4
1 # arg 1:  the new package version
2 post_install() {
3   echo "Updating TeX tree..."
4   mktexlsr
7 # arg 1:  the new package version
8 # arg 2:  the old package version
9 post_upgrade() {
10   post_install $1
13 # arg 1:  the old package version
14 post_remove() {
15   post_install $1
18 op=$1
19 shift
20 [ "$(type -t "$op")" = "function" ] && $op "$@"
22 # vim:set ts=2 sw=2 et: