~ubuntu-branches/ubuntu/vivid/tkrplot/vivid

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2008-04-01 21:09:36 UTC
  • mfrom: (1.2.5 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080401210936-ta5e47j10co6s3k3
Tags: 0.0.18-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#                                                       -*- makefile -*-
3
 
# debian/postinst file for the Debian/GNU Linux r-cran-tkrplot package
4
 
# Copyright 2004, 2005 by Dirk Eddelbuettel <edd@debian.org>
5
 
 
6
 
set -e
7
 
 
8
 
#DEBHELPER#
9
 
 
10
 
case "$1" in
11
 
    configure)
12
 
#       if test -x /usr/bin/R; then
13
 
#           R CMD perl /usr/lib/R/share/perl/build-help.pl --htmllists
14
 
#       fi
15
 
        ;;
16
 
    abort-upgrade|abort-remove|abort-deconfigure)
17
 
        ;;
18
 
    *)
19
 
        echo "postinst called with unknown argument \`$1'" >&2
20
 
        ;;
21
 
esac
22
 
 
23
 
 
24
 
exit 0
25