updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / skulltag-98d / skulltag-98d.install
blob77f47b3689283b91227d07e4120a4aaebc9babaa
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   /bin/true # do something here
10 ## arg 1:  the new package version
11 post_install() {
12  echo ":: Skulltag looks for IWADs (e.g. doom2.wad) in 
13 /usr/local/share/"
14  echo ":: Without timidity, run with arguments"
15  echo -e "::\tskulltag -nomusic +snd_output alsa"
19 ## arg 1:  the new package version
20 ## arg 2:  the old package version
21 pre_upgrade() {
22   /bin/true
26 ## arg 1:  the new package version
27 ## arg 2:  the old package version
28 post_upgrade() {
29   # do something here
30   post_install $1
33 ## arg 1:  the old package version
34 pre_remove() {
35   /bin/true
38 ## arg 1:  the old package version
39 post_remove() {
40   /bin/true
43 # vim:set ts=2 sw=2 et: