diff options
Diffstat (limited to 'Build.PL')
-rwxr-xr-x | Build.PL | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL new file mode 100755 index 0000000..a1d6833 --- /dev/null +++ b/Build.PL @@ -0,0 +1,23 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use Module::Build; + +Module::Build->new( + + build_requires => { + 'Module::Build' => '0.36', + 'Test::More' => 0, + 'Test::Compile' => 0, + 'Test::Pod' => 0, + }, + module_name => 'App::VRR::Fakedisplay', + license => 'perl', + requires => { + 'perl' => '5.10.0', + }, + share_dir => 'share', + sign => 1, + +)->create_build_script(); |