Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / setup_native / source / packinfo / shellscripts_module.txt
blob32a15da9bdc6ff4a928642c44930072cd72c8688
1 %format deb
3 %postinstall << END
4 if [ "$$1" = "configure" ] ; then
5   # update desktop database
6   if [ -x /usr/bin/update-desktop-database ]; then
7     update-desktop-database -q /usr/share/applications
8   fi
9   # update debian style menus
10   if [ -x /usr/bin/update-menus ]; then
11     update-menus
12   fi
14 exit 0
15 END
17 %postremove << END
18 if [ "$$1" != "purge" ]
19 then
20   if [ -x /usr/bin/update-desktop-database ]
21   then
22     update-desktop-database -q /usr/share/applications
23   fi
24   if [ -x /usr/bin/update-menus ]
25   then
26     update-menus
27   fi
29 exit 0
30 END
32 %format all