summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2010-08-01 12:03:14 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2010-08-01 12:03:14 +0200
commitc91b464dce9357ceb9653d16fe6e06cd4fb2d666 (patch)
treeaf41f8a61739384d3ccbc7b9a336ed78d3c56525 /Build.PL
parent34dddb5db65fefc5c36e8b99b9692dbcc14d8642 (diff)
Switch to Module::Build
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..4c0c554
--- /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 => 'efa',
+ dist_version_from => 'bin/efa',
+ license => 'unrestricted',
+ requires => {
+ 'perl' => '5.10.0',
+ 'Getopt::Long' => 0,
+ 'XML::LibXML' => 0,
+ 'WWW::Mechanize' => 0,
+ },
+ script_files => 'bin/',
+);
+$build->create_build_script;