File: postinst

package info (click to toggle)
xplanet 0.43-5
  • links: PTS
  • area: main
  • in suites: potato
  • size: 904 kB
  • ctags: 321
  • sloc: cpp: 3,041; sh: 1,977; makefile: 141
file content (14 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

if [ "$1" = "configure" ]; then
      if [ -d /usr/doc -a ! -e /usr/doc/xplanet \
          -a -d /usr/share/doc/xplanet ]; then
              ln -sf ../share/doc/xplanet /usr/doc/xplanet
      fi
fi

if [ -x /usr/bin/update-menus ]; then
  update-menus
fi