#!/usr/bin/perl

$PACKAGE = "$ARGV[0]";
$CUSTOM = "$ARGV[1]";
$TARGET = "$ARGV[2]";

if( -e "$CUSTOM/Caster.app" )
{
	if( -e "$CUSTOM/Caster.app/data/esnecil" ){ `mv "$CUSTOM/Caster.app/data/esnecil" "/tmp/esnecil"`; }
	`rm -rf '$CUSTOM/Caster.app/data'`;
	`rm -rf '$CUSTOM/Caster.app/Contents'`;
}

exit 0;