diff options
Diffstat (limited to 'debian/postinst')
-rw-r--r-- | debian/postinst | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index cd2b3af..0000000 --- a/debian/postinst +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# debian/postinst file for r-cran-packages -# Copyright 2004, 2005 by Dirk Eddelbuettel <edd@debian.org> - -set -e - -#DEBHELPER# - -case "$1" in - configure) - if test -x /usr/bin/R; then - /usr/bin/R CMD perl /usr/lib/R/share/perl/build-help.pl --htmllists - fi - ;; - abort-upgrade|abort-remove|abort-deconfigure) - ;; - *) - echo "postinst called with unknown argument \`$1'" >&2 - ;; -esac - - -exit 0 - |