App-Textcast

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
else
        {
        return($version) ;
        }
}
 
sub ACTION_author_test
{
my $self = shift;
local $self->{properties}{test_files} = 'xt/author/*.t' ;
$self->SUPER::ACTION_test();
}
 
sub ACTION_dist
{
my $self = shift;
 
if($ENV{'App_Textcast_USE_GIT_VERSION_FOR_DIST'})
        {
        my $have_git = $self->do_system('git --version');
        

Build.PL  view on Meta::CPAN

108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
                        {
                        print "Couldn't get git log, 'Changes' will not be generated from git log!\n" ;
                        }
                }
        else
                {
                print "git not found, 'Changes' will not be generated from git log!\n" ;
                }
        }
 
$self->SUPER::ACTION_test() ;
#~ $self->ACTION_author_test() ;
 
$self->SUPER::ACTION_dist();
};
 
EOC
;
 
my $class = Module::Build->subclass(class => 'App::Textcast', code => $code) ;
 
my @prerequisits ;
if($^O ne 'MSWin32')
        {



( run in 0.312 second using v1.01-cache-2.11-cpan-1dc43b0fbd2 )