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 21 lines (13 sloc) 0.508 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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');
 
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');
 
installdirs( 'perl'); # This overwrites a core module!
 
WriteAll();