| 12345678910111213141516171819 |
- #! /bin/sh
- if [ "$1" = configure ]; then
- if [ -d /usr/doc -a ! -e /usr/doc/dpkg-doc -a -d /usr/share/doc/dpkg-doc ] ; then
- ln -s ../share/doc/dpkg-doc /usr/doc/dpkg-doc
- fi
- if command -v install-docs >/dev/null 2>&1; then
- echo -n "Registering DPKG documentation..."
- install-docs -i /usr/share/doc-base/dpkg-internals
- echo "done."
- fi
- fi
- install-info \
- --quiet \
- --description="dpkg Internals Guide." \
- --section "Miscellaneous" "Miscellaneous" \
- /usr/share/info/internals.info.gz
|