summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2010-09-17 18:04:15 +0200
committerDaniel Friesel <derf@finalrewind.org>2010-09-17 18:04:15 +0200
commitaeb5068d17eda0f39a1e40f614b1bb15e16731a1 (patch)
tree66d58c9876cc51f01b1d33e42ae5b3f5ee7a3c2e /Build.PL
parent7608c070134c7dc5c477e17801cc61f6493d843d (diff)
Makefile -> Build.PL
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL23
1 files changed, 23 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..16da3c1
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,23 @@
+#!/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_name => 'gen-xhtml-thumbnails',
+ dist_version_from => 'bin/gen-xhtml-thumbnails',
+ license => 'unrestricted',
+ requires => {
+ 'perl' => '5.10.0',
+ 'Archive::Tar' => 0,
+ 'Image::Imlib2' => 0,
+ },
+ script_files => 'bin/',
+);
+$build->create_build_script();