#!/bin/sh
#
# postinst script for the Debian GNU/Linux r-extras package
# This version written by Douglas Bates <bates@stat.wisc.edu>

set -e

case "$1" in
    configure)     
      (cd /usr/lib/R/library; cat */TITLE > LibIndex; ../etc/build-help --htmllist)
	#
       ;;
    abort-upgrade|abort-remove|abort-deconfigure)
        ;;
    *)
        echo "postinst called with unknown argument \`$1'" >&2
        ;;
esac
