1use ExtUtils::MakeMaker;
2use strict;
3
4my %opts = (
5            'NAME'          => "Test::Parser",
6            'AUTHOR'        => "Bryce Harrington <bryce\@osdl.org>",
7            'ABSTRACT_FROM' => "lib/Test/Parser.pm",
8            'VERSION'       => '1.9',
9            'EXE_FILES'     => [ qw(
10                                     scripts/kernel2trpi
11                                     scripts/parse_build_kernel
12                                     scripts/parse_ltp
13                                     scripts/parse_newpynfs
14                                     scripts/parse_sysbench_cpu
15                                     scripts/parse_sysbench_fileio
16                                     scripts/parse_iozone
17                                     scripts/parse_test
18                                     ) ],
19            'PREREQ_PM'     => {
20                'Pod::Usage'     => 0,
21                'Getopt::Long'   => 0,
22                'XML::Twig'      => 0,
23                'XML::Simple'    => 0,
24                'CGI'            => 0,
25            },
26);
27
28WriteMakefile( %opts )
29
30# vi:set ai ts=4 sw=4 expandtab:
31