summarylogtreecommitdiffstats
path: root/starsector.install
blob: 0b12434b6d698507b0689c4f3ba9f4f97e7387c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## arg 1:  the new package version
post_install() {
  update-desktop-database -q
  echo ">>> PACKAGE NOTES"
  echo ">>> --------------"
  echo ">>> This is the full version of the game, you need a serial key to play it."
  echo ">>> You can buy a serial key at http://fractalsoftworks.com/preorder/"
  echo ""
  echo ">>> RELEASE NOTES:"
  echo ">>> --------------"
  echo ">>> http://fractalsoftworks.com/forum/index.php?topic=11477.0"
}

## arg 1:  the new package version
## arg 2:  the old package version
post_upgrade() {
  update-desktop-database -q
  echo ">>> RELEASE NOTES:"
  echo ">>> --------------"
  echo ">>> http://fractalsoftworks.com/forum/index.php?topic=11477.0"
}

post_remove() {
  update-desktop-database -q
}

# vim:set ts=2 sw=2 et: