changeset 0 | f65c3dd5742a |
child 4 | 0fc33e54b1c6 |
-1:000000000000 | 0:f65c3dd5742a |
---|---|
1 #! perl |
|
2 use Module::Build; |
|
3 |
|
4 Module::Build->new( |
|
5 module_name => 'Scalar::RefType', |
|
6 dist_abstract => 'simple scalar ref type checker', |
|
7 version_from => 'lib/Scalar/RefType.pm', |
|
8 build_requires => { |
|
9 Test::Exception => 0, |
|
10 }, |
|
11 requires => { |
|
12 perl => '5.0', |
|
13 } |
|
14 )->create_build_script; |