-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
27 lines (25 loc) · 863 Bytes
/
Build.PL
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/perl
use Module::Build;
Module::Build->new(
requires => {
perl => '5.8.0',
# required modules that ship with perl-5.8.0
# Carp => 0,
# Getopt::Long => 0,
# File::Spec => 0,
# File::Temp => 0,
# Test::More => 0,
IO::All => 0,
YAML::Syck => 0,
# needed for the testsuite
Test::Exception=> 0,
Test::Output => 0,
},
module_name => 'App::SVN::Bisect',
license => 'artistic_2',
script_files => [qw(bin/svn-bisect)],
create_makefile_pl => 'traditional',
dist_author => 'Mark Glines <[email protected]>',
dist_version_from => 'lib/App/SVN/Bisect.pm',
dist_abstract => 'tool to perform binary searches on SVN checkouts',
)->create_build_script;