Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > 34126b980dd4b4c895dab064cfec8999 > scriptlet

cdogs-sdl-0.6.9-1.mga7.i586.rpm

PRETRANS

<lua>
sizes = {"16x16", "22x22", "32x32", "48x48"}
for i, size in ipairs(sizes) do
  path = "/usr/share/icons/hicolor/" .. size .. "/apps/cdogs-sdl.png"
  st = posix.stat(path)
  if st and st.type == "directory" then
    status = os.rename(path, path .. ".rpmmoved")
    if not status then
      suffix = 0
      while not status do
        suffix = suffix + 1
        status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix)
      end
      os.rename(path, path .. ".rpmmoved")
    end
  end
end