summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL27
1 files changed, 27 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..b2803d0
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,27 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+use Module::Build;
+
+my $build = Module::Build->new(
+ build_requires => {
+ 'Test::More' => 0,
+ 'Test::Compile' => 0,
+ 'Test::Pod' => 0,
+ },
+ dist_abstract => 'Cheap PNG widgets for the lulz',
+ dist_name => 'visual',
+ dist_version => '0.0',
+ license => 'unrestricted',
+ PL_files => {
+ 'lib/Derf/Visual/WeatherIcons.pm.PL' =>
+ 'lib/Derf/Visual/WeatherIcons.pm',
+ },
+ requires => {
+ 'perl' => '5.10.0',
+ 'autodie' => 0,
+ },
+ sign => 1,
+);
+$build->create_build_script();