1use ExtUtils::MakeMaker;
2use 5.008001;
3
4WriteMakefile(
5    NAME              => 'Digest::MurmurHash',
6    VERSION_FROM      => 'lib/Digest/MurmurHash.pm', # finds $VERSION
7    PREREQ_PM         => {}, # e.g., Module::Name => 1.1
8    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
9      (ABSTRACT_FROM  => 'lib/Digest/MurmurHash.pm', # retrieve abstract from module
10       AUTHOR         => 'Toru Maesaka <dev@torum.net>') : ()),
11    LIBS              => [''], # e.g., '-lm'
12    DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
13    INC               => '-I.', # e.g., '-I. -I/usr/include/other'
14	# Un-comment this if you add C files to link with later:
15    # OBJECT            => '$(O_FILES)', # link all the C files too
16);
17