From 318518e17bace1b7dc0a4526af267edd88feb447 Mon Sep 17 00:00:00 2001 From: ranke Date: Mon, 8 Aug 2005 15:23:33 +0000 Subject: Debianization. git-svn-id: http://kriemhild.uft.uni-bremen.de/svn/drfit@35 d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc --- debian/postinst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 debian/postinst (limited to 'debian/postinst') diff --git a/debian/postinst b/debian/postinst new file mode 100644 index 0000000..cd2b3af --- /dev/null +++ b/debian/postinst @@ -0,0 +1,24 @@ +#!/bin/sh +# debian/postinst file for r-cran-packages +# Copyright 2004, 2005 by Dirk Eddelbuettel + +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 + -- cgit v1.2.1