summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 5ec738bd18027e20a967c186f1ee145518237f9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 => 'Generate Thumbnails + Index for a set of images',
	dist_name => 'dthumb',
	module_name => 'App::Dthumb',
	license => 'unrestricted',
	requires => {
		'perl' => '5.10.0',
		'autodie' => 0,
		'Cwd' => 0,
		'Data::Section' => 0,
		'Getopt::Long' => 0,
		'Image::Imlib2' => 0,
		'MIME::Base64' => 0,
	},
);
$build->create_build_script();