blob: 8a020eec16c90406345c0aad4f231559cadcabaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
echo 'Installed. Run infra-arcana to launch.'
echo 'Saved games and other game data are located in ~/.local/share/infra_arcana'
}
post_upgrade() {
post_install "$1"
}
post_remove() {
echo 'To remove application data such as saved games, delete ~/.local/share/infra_arcana'
}
# vim:set ts=2 sw=2 et:
|