blob: bbfd611d3032fd88ad3f20c4a1ee47683c6914ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Inform the user that they must have a copy of SWG
post_install() {
echo ">>> You must have a legal copy of SWG"
echo ">>> All this package is, is the launchpad to start SWGEmu"
echo ">>> Please refer to http://www.swgemu.com for more info"
}
# Inform the user that their files still remain, and to
# remove them if they wish
post_remove() {
echo ">>> Please note, that removing swgemu-launchpad"
echo ">>> Does not remove any files you've installed"
echo ">>> During the SWG install process or any files"
echo ">>> SWGEmuLaunchpad may have installed. Please"
echo ">>> Refer to those two locations if you wish to"
echo ">>> Completely remove SWGEmu from your system."
}
|