#! /bin/sh
# postinst script for tetex-brev
#
# see: dh_installdeb(1)

set -e

# Make sure we wind mktexlsr
PATH=$PATH:/usr/bin
export PATH

case "$1" in
    configure)
        # Update the LaTex Index with the new class file.
	mktexlsr
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)

    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 0
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0
