updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / skulltag-x86_64 / skulltag-x86_64.install
blobfb3fdb437a3c76d2ac8f87a42519767bcaab924e
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 /usr/local/share/"
13  echo ":: Without timidity, run with arguments"
14  echo -e "::\tskulltag -nomusic +snd_output alsa"
18 ## arg 1:  the new package version
19 ## arg 2:  the old package version
20 pre_upgrade() {
21   /bin/true
25 ## arg 1:  the new package version
26 ## arg 2:  the old package version
27 post_upgrade() {
28   # do something here
29   post_install $1
32 ## arg 1:  the old package version
33 pre_remove() {
34   /bin/true
37 ## arg 1:  the old package version
38 post_remove() {
39   /bin/true
42 # vim:set ts=2 sw=2 et: