#!/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
    configure)
	# R CMD perl /usr/lib/R/share/perl/build-help.pl --htmllists
        ;;
    abort-upgrade|abort-remove|abort-deconfigure)
        ;;
    *)
        echo "postinst called with unknown argument '$1'" >&2
        ;;
esac

exit 0

