summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 4a511e9120add0d82231d7543ed78b274bc4d4d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'Ivy',
    'VERSION_FROM' => 'Ivy.pm', # finds $VERSION
    'PREREQ_PM'    => {
	'Time::Gettimeofday' => 0.02,
	'IO::Socket::Multicast' => 0.25,
    },
    'PM' => {'Ivy.pm' => '$(INST_LIBDIR)/Ivy.pm'},
    'INSTALLDIRS' => 'vendor',

    'EXE_FILES' => [ qw(example/ivyprobe.pl example/ivymainloop.pl) ],
);