The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
    VERSION_FROM   => 'lib/Lustre/Info.pm',
    NAME           => 'Lustre::Info',
    PREREQ_PM      => { 
                         'Getopt::Long' => 0,
                      },
    ABSTRACT_FROM  => 'lib/Lustre/Info.pm',
    AUTHOR         => 'Adrian Ulrich <adrian@id.ethz.ch>',
    EXE_FILES      => [ qw(script/lustre-info.pl) ],
);