aboutsummaryrefslogtreecommitdiff
path: root/debian/postrm
blob: 9d19fd37d80c33a5d0c4e800d07974e5e48e1850 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
# debian/postrm file for r-cran packages
# Copyright 2004, 2005 by Dirk Eddelbuettel <edd@debian.org>

set -e

#DEBHELPER#

case "$1" in
    upgrade|remove|purge)
	if test -x /usr/bin/R; then
	    /usr/bin/R CMD perl /usr/lib/R/share/perl/build-help.pl --htmllists
	fi
        ;;
    failed-upgrade|abort-install|abort-upgrade|disappear)
        ;;
    *)
        echo "postrm called with unknown argument \`$1'" >&2
        ;;
esac


exit 0

Contact - Imprint