summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2010-08-05 20:48:14 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2010-08-05 20:48:14 +0200
commita01588a03471a652043145eefeec5ef4bf77d05c (patch)
treec2989ee073c96d0cf8a805546f3f988ab474ef05 /Build.PL
parent5e4555011fd9e465be9efefc685f12f0dbf28902 (diff)
Makefile -> Build.PL
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL25
1 files changed, 25 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..0b2c587
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,25 @@
+#!/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,
+ 'Test::Command' => 0,
+ },
+ dist_name => 'icli',
+ dist_version_from => 'bin/icli',
+ license => 'unrestricted',
+ requires => {
+ 'perl' => '5.10.0',
+ 'Date::Format' => 0,
+ 'Getopt::Long' => 0,
+ 'Term::ANSIColor' => 0,
+ },
+ script_files => 'bin/',
+);
+$build->create_build_script();