~ubuntu-branches/ubuntu/raring/libclass-mix-perl/raring-proposed

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Package Import Robot
  • Author(s): Xavier Guimard, Xavier Guimard, gregor herrmann
  • Date: 2012-12-23 16:43:28 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20121223164328-19g6gwox10b75t9s
Tags: 0.005-1
[ Xavier Guimard ]
* Take over for the Debian Perl Group on maintainer's request
  (http://bugs.debian.org/677732#10)
* Imported Upstream version 0.005
* Update source format to 3.0 (quilt)
* Remove README from docs
* Bump Standards-Version to 3.9.4
* Bump debhelper compatibility to 8
* Update debian/copyright (years and format)
* Add libparams-classify-perl in dependencies
* Update description
* Add libtest-pod-perl and libtest-pod-coverage-perl in dependencies
* Remove libmodule-build dependency

[ gregor herrmann ]
* Make short description a noun phrase.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Note: this file was auto-generated by Module::Build::Compat version 0.31012
 
1
# Note: this file was auto-generated by Module::Build::Compat version 0.3800
2
2
require 5.006;
3
 
    
 
3
 
4
4
    unless (eval "use Module::Build::Compat 0.02; 1" ) {
5
5
      print "This module requires Module::Build to install itself.\n";
6
 
      
 
6
 
7
7
      require ExtUtils::MakeMaker;
8
8
      my $yn = ExtUtils::MakeMaker::prompt
9
9
        ('  Install Module::Build now from CPAN?', 'y');
10
 
      
 
10
 
11
11
      unless ($yn =~ /^y/i) {
12
12
        die " *** Cannot install without Module::Build.  Exiting ...\n";
13
13
      }
14
 
      
 
14
 
15
15
      require Cwd;
16
16
      require File::Spec;
17
17
      require CPAN;
18
 
      
 
18
 
19
19
      # Save this 'cause CPAN will chdir all over the place.
20
20
      my $cwd = Cwd::cwd();
21
 
      
 
21
 
22
22
      CPAN::Shell->install('Module::Build::Compat');
23
23
      CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
24
24
        or die "Couldn't install Module::Build, giving up.\n";
25
 
      
 
25
 
26
26
      chdir $cwd or die "Cannot chdir() back to $cwd: $!";
27
27
    }
28
28
    eval "use Module::Build::Compat 0.02; 1" or die $@;
29
29
    
30
30
    Module::Build::Compat->run_build_pl(args => \@ARGV);
 
31
    my $build_script = 'Build';
 
32
    $build_script .= '.com' if $^O eq 'VMS';
 
33
    exit(0) unless(-e $build_script); # cpantesters convention
31
34
    require Module::Build;
32
35
    Module::Build::Compat->write_makefile(build_class => 'Module::Build');