#!/bin/sh
# 							-*- makefile -*-
# debian/postinst file for the Debian/GNU Linux r-cran-sgeostat package
# Copyright 2004 by Dirk Eddelbuettel <edd@debian.org>

set -e

#DEBHELPER#

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


exit 0

