\npost_install() {

	if which pycompile >/dev/null 2>&1; then
		pycompile -p mazenum 
	fi

}
\npre_remove() {

	if which pyclean >/dev/null 2>&1; then
		pyclean -p mazenum 
	else
		pacman -Qql mazenum | grep \.py$ | while read file
		do
			rm -f "${file}"[co] >/dev/null
	  	done
	fi

}
\npost_remove() {
}
