summarylogtreecommitdiffstats
path: root/infra-arcana.install
blob: fd4411f891e17a56f1afd8f0dd1afce364788741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
  echo 'Installed. Run infra-arcana to launch.'
  echo 'You will have to be a member of the games group to be able to save'
  echo 'Saved games and other game data are located in /var/lib/infra-arcana/data'
}

post_upgrade() {
  post_install "$1"
}

post_remove() {
  echo 'To remove application data such as saved games, delete /var/lib/infra-arcana'
}

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