- updates to correct Linux installer issues

- updated changelog
This commit is contained in:
Mark Vejvoda
2011-05-07 11:30:25 +00:00
parent 9bcd0288f4
commit faf35d1d04
3 changed files with 32 additions and 2 deletions

View File

@@ -4,11 +4,12 @@
MojoSetup.applocalization = {
["Uninstall complete"] = {
en = "Uninstall complete. You may also delete '.megaglest' in your home directory to remove personal savegames and settings.",
en = "Uninstall complete.",
de = "Deinstallation komplett.",
es = "Desinstalación completa.",
pl = "Usuwanie zakończone.",
it = "Disinstallazione completata.",
it = "Disinstallazione completata. Se desideri cancellare i salvataggi e le impostazione cancella '.megaglest' nella tua directory home.",
};
["Megaglest README"] = {
@@ -18,7 +19,7 @@ MojoSetup.applocalization = {
it = "Informazioni su Megaglest",
};
["docs/README"] = {
["docs/README"] = {
};
["Megaglest License"] = {

View File

@@ -68,6 +68,18 @@ Setup.Package
end
end,
postuninstall = function(package)
-- Cleanup additional files
if MojoSetup.destination ~= '' then
if MojoSetup.platform.exists(MojoSetup.destination .. '/lib/') then
os.execute('rm -rf ' .. MojoSetup.destination .. '/lib/')
end
if MojoSetup.platform.exists(MojoSetup.destination) then
os.execute('rm -rf ' .. MojoSetup.destination)
end
end
end,
Setup.Eula
{
description = _("Megaglest License"),