terceiro / egypt

DEPRECATED. See analizo insted

egypt / Makefile.PL
100644 23 lines (20 sloc) 0.53 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use ExtUtils::MakeMaker;
 
my @exe_files = glob('egypt*');
 
WriteMakefile(
  NAME => 'egypt',
  VERSION_FROM => 'egypt',
  EXE_FILES => \@exe_files,
  PMLIBDIRS => [ 'Egypt' ],
  AUTHOR => 'Antonio Terceiro <terceiro@softwarelivre.org>',
  LICENSE => 'perl',
  ABSTRACT => 'A dependency extractor for C/C++ projects',
  PREREQ_PM => {
      'Class::Accessor::Fast' => 0,
      'Test::Class' => 0,
      'Getopt::Euclid' => 0,
      'List::Compare' => 0,
      'Graph' => 0,
      'YAML' => 0,
      'Test::Exception' => 0,
  },
);