~ubuntu-branches/ubuntu/karmic/ocaml-doc/karmic

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Vanicat Rémi
  • Date: 2002-02-05 10:51:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020205105143-a061tunf8tev07ne
Tags: 3.04-4
* New debian maintainer
* Split doc-base file
* Move to non-free
* Change the copyright file to the copyright of the documentation
* remove FAQs (their license prohibit their redistribution)
* corrected the examples

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# Info documentation stuff.
 
4
install-info --quiet --section Programming Programming          \
 
5
        --description="The Objective Caml system release 3.04 Documentation and user's manual"  \
 
6
        /usr/share/info/ocaml.info.gz
 
7
 
 
8
# Doc-Base stuff :
 
9
if [ "$1" = configure ]; then
 
10
        if command -v install-docs >/dev/null 2>&1; then
 
11
                install-docs -i /usr/share/doc-base/ocaml-doc
 
12
                install-docs -i /usr/share/doc-base/ocaml-doc.camlp4
 
13
                install-docs -i /usr/share/doc-base/ocaml-doc.camlp4-tutorial
 
14
                install-docs -i /usr/share/doc-base/ocaml-doc.examples
 
15
        fi
 
16
fi