summaryrefslogtreecommitdiff
path: root/Build.PL
blob: c45ef14cc22bc03c19cf2e6cf5e7f3020b5aeef1 (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
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env perl

use strict;
use warnings;
use Module::Build;

my $build = Module::Build->new(
	build_requires => {
		'Test::Compile' => 0,
		'Test::Fatal' => 0,
		'Test::More' => 0,
		'Test::Pod' => 0,
	},
	license => 'unrestricted',
	module_name => 'App::Raps2',
	requires => {
		'perl' => '5.10.0',
		'Carp' => 0,
		'Config::Tiny' => 0,
		'Crypt::CBC' => 0,
		'Crypt::Eksblowfish' => 0,
		'Crypt::Eksblowfish::Bcrypt' => 0,
		'File::BaseDir' => 0,
		'File::Path' => 2.06_05,
		'File::Slurp' => 0,
		'Getopt::Long' => 0,
		'POSIX' => 0,
		'Term::ReadLine' => 0,
	},
	script_files => 'bin/',
	sign => 1,
	meta_merge => {
		resources => {
			repository => 'https://github.com/derf/App-Raps2'
		}
	},
);
$build->create_build_script();