updated on Wed Jan 25 12:16:47 UTC 2012
[aur-mirror.git] / petri-foo-git / petri-foo.install
blob31c973aba62f93703ddb96495308302a4c9c95f7
1 # This is a default template for a post-install scriptlet.
2 # Uncomment only required functions and remove any functions
3 # you don't need (and this header).
5 ## arg 1:  the new package version
6 #pre_install() {
7   # do something here
8 #}
10 ## arg 1:  the new package version
11 post_install() {
12   update-mime-database usr/share/mime
13   update-desktop-database -q
16 ## arg 1:  the new package version
17 ## arg 2:  the old package version
18 #pre_upgrade() {
19   # do something here
22 ## arg 1:  the new package version
23 ## arg 2:  the old package version
24 post_upgrade() {
25   update-mime-database usr/share/mime
26   update-desktop-database -q
29 ## arg 1:  the old package version
30 #pre_remove() {
31   # do something here
34 ## arg 1:  the old package version
35 #post_remove() {
36   # do something here
39 # vim:set ts=2 sw=2 et: