File: postrm

package info (click to toggle)
design 2.0.12-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,408 kB
  • ctags: 1,283
  • sloc: asm: 13,945; fortran: 626; sh: 22; makefile: 12
file content (25 lines) | stat: -rw-r--r-- 508 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
# 							-*- makefile -*-
# debian/postrm file for the Debian/GNU Linux r-cran-design package
# Copyright 2004-2006 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