File: postinst

package info (click to toggle)
addressbook 0.7-8
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 944 kB
  • ctags: 163
  • sloc: tcl: 6,000; perl: 528; ansic: 362; awk: 205; sh: 133; makefile: 104
file content (14 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

# install doc-base
if [ -x /usr/sbin/install-docs ]; then
    echo -n "Registering addressbook documentation..."
    install-docs -i /usr/share/doc-base/addressbook
    echo "done."
fi

#DEBHELPER#

exit 0