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

## ----------------------------------------------------------------------
set -e

##Setting permissions for the binary link.
chmod +x /usr/bin/pyrecipe


#Updating the menu icon. It's slow but the icon is shown in the installation.
gtk-update-icon-cache -f /usr/share/icons/hicolor


exit 0
