public
Description: Make functions succeed or die in Perl, with lexical scope.
Homepage: http://search.cpan.org/perldoc?autodie
Clone URL: git://github.com/pfenwick/autodie.git
Click here to lend your support to: autodie and make a donation at www.pledgie.com !
autodie / Makefile.PL
100755 20 lines (13 sloc) 0.511 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl -w
use strict;
use inc::Module::Install;
 
name( 'autodie');
 
all_from( 'lib/autodie.pm');
version_from( 'lib/autodie/exception.pm');
test_requires( 'Test::More');
 
requires( 'perl' => '5.8.0');
requires( 'Scope::Guard' => 0) if $] < 5.010; # For 5.8 support.
 
recommends( 'IPC::System::Simple' => '0.12'); # For autodying system()
 
resources( repository => 'http://github.com/pfenwick/autodie/tree/master');
resources( blog => 'http://pjf.id.au/blog/toc.html?tag=autodie');
 
WriteAll();