# $Id: Makefile.PL,v 1.4 2008/03/20 05:30:29 tpederse Exp $ use strict; use warnings; use 5.006; use ExtUtils::MakeMaker; WriteMakefile( NAME => 'WordNet::SenseRelate::AllWords', VERSION_FROM => 'lib/WordNet/SenseRelate/AllWords.pm', # finds $VERSION PREREQ_PM => {'WordNet::Similarity' => 0.16}, ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/WordNet/SenseRelate/AllWords.pm', # retrieve abstract from module AUTHOR => 'Ted Pedersen ') : ()), EXE_FILES => ['utils/wsd.pl'], # allows make dist to create .tar.gz with correct name/version 'dist' => {'COMPRESS' => 'gzip -9f', 'SUFFIX' => 'gz'}, # allows for automatic creation of META.yml ($ExtUtils::MakeMaker::VERSION ge '6.30_00'? ('LICENSE' => 'gpl', ) : ()), );