equal
deleted
inserted
replaced
1 use strict; |
|
2 use warnings; |
|
3 use Module::Build; |
|
4 |
|
5 Module::Build->new( |
|
6 dist_name => "blockfuse", |
|
7 dist_author => "Heiko Schlittermann <hs\@schlittermann.de>", |
|
8 dist_version_from => "bin/blockfuse", |
|
9 dist_abstract => "map a block device into a ordinary file", |
|
10 license => "GPL_3", |
|
11 create_license => 1, |
|
12 script_files => [glob "bin/*"], |
|
13 requires => { |
|
14 perl => "5.10.0", |
|
15 autodie => "0", |
|
16 Fuse => "0", |
|
17 "IPC::System::Simple" => "0", |
|
18 "Pod::Usage" => "0", |
|
19 }, |
|
20 build_requires => { |
|
21 "Test::More" => "0.92", |
|
22 "Digest::MD5" => "0", |
|
23 }, |
|
24 )->create_build_script(); |
|