#!/bin/sh -e
## ----------------------------------------------------------------------
## debian/postinst : postinstallation script for lybniz
## ----------------------------------------------------------------------

## ----------------------------------------------------------------------

chmod +x /usr/bin/lybniz
echo "changed permissions"

oldversion="$2"
if [ -z "$oldversion" ]; then
    gtk-update-icon-cache -f /usr/share/icons/hicolor
fi


exit 0
