The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#! /usr/bin/perl

use strict;
use Cwd;
use File::Basename;
use File::Spec;

sub magic_number_matches {
  return 0 unless -e '_build/magicnum';
  local *FH;
  open FH, '_build/magicnum' or return 0;
  my $filenum = <FH>;
  close FH;
  return $filenum == 339931;
}

my $progname;
my $orig_dir;
BEGIN {
  $^W = 1;  # Use warnings
  $progname = basename($0);
  $orig_dir = Cwd::cwd();
  my $base_dir = '/home/leto/git/mimosa';
  if (!magic_number_matches()) {
    unless (chdir($base_dir)) {
      die ("Couldn't chdir($base_dir), aborting\n");
    }
    unless (magic_number_matches()) {
      die ("Configuration seems to be out of date, please re-run 'perl Build.PL' again.\n");
    }
  }
  unshift @INC,
    (
     '/home/leto/git/util/perl_lib',
     '/home/leto/perl5/lib/perl5',
     '/home/leto/local-lib/lib/perl5/x86_64-linux-gnu-thread-multi',
     '/home/leto/local-lib/lib/perl5',
     '/home/leto/svn/gmod/chado/lib',
     '/home/leto/git/cxgn/cxgn-corelibs/lib',
     '/home/leto/git/cxgn/ITAG/lib',
     '/home/leto/git/cxgn/ITAG-analyses/lib',
     '/home/leto/git/cxgn/Phenome/lib',
     '/home/leto/git/cxgn/sgn/lib',
     '/home/leto/git/cxgn/Cview/lib',
     '/home/leto/git/cxgn/tomato_genome/lib',
     '/home/leto/git/cxgn/biosource/lib',
     '/home/leto/git/cxgn/sgn-devtools/lib'
    );
}

close(*DATA) unless eof(*DATA); # ensure no open handles to this script

use Module::Build;
Module::Build->VERSION(q{0.38});

# Some platforms have problems setting $^X in shebang contexts, fix it up here
$^X = Module::Build->find_perl_interpreter;

if (-e 'Build.PL' and not Module::Build->up_to_date('Build.PL', $progname)) {
   warn "Warning: Build.PL has been altered.  You may need to run 'perl Build.PL' again.\n";
}

# This should have just enough arguments to be able to bootstrap the rest.
my $build = Module::Build->resume (
  properties => {
    config_dir => '_build',
    orig_dir => $orig_dir,
  },
);

$build->dispatch;