File: postinst

package info (click to toggle)
kdevelop 3%3A2.1-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 11,664 kB
  • ctags: 6,348
  • sloc: cpp: 57,968; sh: 11,432; perl: 3,327; makefile: 561; python: 258; lex: 175; ansic: 19
file content (28 lines) | stat: -rw-r--r-- 538 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

set -e
case "$1" in
    configure)
    ;;
 
    abort-upgrade|abort-remove|abort-deconfigure)
 
    ;;
 
    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 0
    ;;
esac
 
if [ "$1" = configure ] && command -v install-docs >/dev/null 2>&1; then
  install-docs -i /usr/share/doc-base/kdevelop-kdelibref
  install-docs -i /usr/share/doc-base/kdevelop-tutorial
  install-docs -i /usr/share/doc-base/kdevelop-programming
  install-docs -i /usr/share/doc-base/kdevelop-user
fi

#DEBHELPER#
 
exit 0