Project: innotop
Code Location: https://innotop.svn.sourceforge.net/svnroot/innotop/trunk/trunk
Browse
/
Download File
Makefile.PL
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'         => 'innotop',
    'VERSION_FROM' => 'innotop',     # finds $VERSION
    'EXE_FILES'    => ['innotop'],
    'PREREQ_PM'    => {
        Term::ReadKey => 2.10,
        DBI           => 1.13,
        DBD::mysql    => 1.0,
        InnoDBParser  => 1.1,
    },
    'LIBS'   => [''],                # e.g., '-lm'
    'DEFINE' => '',                  # e.g., '-DHAVE_SOMETHING'
    'INC'    => '',                  # e.g., '-I/usr/include/other'
);