#!/bin/sh
# ===== Generic installation ======

case "$1" in
  
  beforeInstall)
	echo "other beforeInstall"
	;;
  
  afterInstall)
	echo "other afterInstall"
	;;
  
  uninstall)
	echo "other uninstall"
	;;

  *)
	echo -e "Usage:\n\tother beforeInstall\n\tother afterInstall\n\tother uninstall"
	
esac
