enqueue script if page is not equal to

add_action( 'wp_enqueue_scripts', 'ron_scripts' );
function ron_scripts(){
   if(is_home()){
     wp_register_script( 'homescript', '/wp-content/themes/template/js/menu-home-open.js' );
     wp_enqueue_script( 'homescript' );
     } else {
     wp_register_script( 'nothomescript', '/wp-content/themes/template/js/FILENAMEHERE.js' );
     wp_enqueue_script( 'nothomescript' );
    }
}

alternatively replace is_home(); with any other method or code that determines what page you are on. ex:

might work

if(site_url() == get_permalink()){
  //do home stuff
} else {
  //do not home stuff
}