File: Makefile.PL

package info (click to toggle)
libbio-chado-schema-perl 0.20000-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,824 kB
  • sloc: perl: 15,306; makefile: 7; sql: 3
file content (70 lines) | stat: -rw-r--r-- 1,578 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70

use strict;
use warnings;



use ExtUtils::MakeMaker 6.30;



my %WriteMakefileArgs = (
  "ABSTRACT" => "A standard DBIx::Class layer for the Chado database schema.",
  "AUTHOR" => "Robert Buels <rbuels\@cpan.org>",
  "BUILD_REQUIRES" => {
    "DBD::SQLite" => "1.14",
    "FindBin" => 0,
    "SQL::Translator" => "0.11005",
    "Test::Exception" => "0.27",
    "Test::More" => "0.87",
    "Test::Warn" => 0
  },
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Bio-Chado-Schema",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Bio::Chado::Schema",
  "PREREQ_PM" => {
    "Bio::PrimarySeq" => 0,
    "Bio::Range" => 0,
    "Bio::Root::Version" => "1.005002",
    "Carp" => 0,
    "Carp::Clan" => 0,
    "DBIx::Class" => 0,
    "DBIx::Class::Core" => 0,
    "DBIx::Class::ResultSet" => 0,
    "DBIx::Class::Schema" => 0,
    "DBIx::Class::Tree::NestedSet" => "0.07",
    "base" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "VERSION" => "0.20000",
  "test" => {
    "TESTS" => "t/*.t t/Cv/*.t t/Phylogeny/*.t t/Sequence/*.t t/Stock/*.t"
  }
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
  my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
  my $pp = $WriteMakefileArgs{PREREQ_PM};
  for my $mod ( keys %$br ) {
    if ( exists $pp->{$mod} ) {
      $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
    }
    else {
      $pp->{$mod} = $br->{$mod};
    }
  }
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);