~ubuntu-branches/ubuntu/lucid/nco/lucid

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Brian Mays
  • Date: 2002-02-07 05:42:36 UTC
  • Revision ID: james.westby@ubuntu.com-20020207054236-wgx5jyzn304fiqkb
Tags: 2.2.0-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
if [ "$1" = configure ]; then
 
4
    install-info --quiet \
 
5
      --section "netCDF" "netCDF" \
 
6
      --description="NetCDF Operator suite." \
 
7
      /usr/share/info/nco.info
 
8
    pkg=nco
 
9
    if test -e /usr/doc/$pkg; then rm -rf /usr/doc/$pkg; fi
 
10
    if test -d /usr/doc -a ! -e /usr/doc/$pkg -a -d /usr/share/doc/$pkg; then
 
11
        ln -sf ../share/doc/$pkg /usr/doc/$pkg; fi
 
12
fi