-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
executable file
·36 lines (32 loc) · 910 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
28
29
30
31
32
33
34
35
36
#!/usr/bin/perl
use 5.006;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
dist_name => 'git-svn-diff',
dist_abstract => 'SVN-style diff for git-svn repositories',
license => 'gpl',
dist_author => q{Chris Lindee <[email protected]>},
dist_version_from => 'bin/git-svn-diff',
build_requires => {
'Exporter' => 0,
'FindBin' => 0,
'File::chdir' => 0,
'File::Path' => 0,
'File::Spec' => 0,
'File::Spec::Unix' => 0,
'File::Temp' => 0,
'IPC::Run' => 0,
'Test::More' => 0,
},
requires => {
'perl' => 5.006,
'File::Basename' => 0,
'Getopt::Long' => 0,
'Git' => 0,
},
add_to_cleanup => [ 'git-svn-diff-*' ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();