diff options
author | ranke <ranke@d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc> | 2005-09-16 18:34:58 +0000 |
---|---|---|
committer | ranke <ranke@d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc> | 2005-09-16 18:34:58 +0000 |
commit | 40deb7367e66fe47e1df12cf00893aac172f5d2b (patch) | |
tree | a295cc8d5d63dba765b3192dee4b17ea5925604c /debian/postrm | |
parent | 3fe9ed2e702124f1a5454072db0bf18d4ac88910 (diff) |
Neue Version ohne deibianization.
git-svn-id: http://kriemhild.uft.uni-bremen.de/svn/drfit@39 d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc
Diffstat (limited to 'debian/postrm')
-rw-r--r-- | debian/postrm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index 9d19fd3..0000000 --- a/debian/postrm +++ /dev/null @@ -1,24 +0,0 @@ -#!/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 - |