#!/usr/local/bin/perl # # $Id: Makefile.PL,v 2.1 2005/06/20 06:21:06 dankogai Exp $ # use strict; use ExtUtils::MakeMaker; my @EXTRA; if ($] >= 5.008001){ @EXTRA = ( NORECURS => 1, PM => { 'Jcode.pm' => '$(INST_LIB)/Jcode.pm', 'Jcode/Nihongo.pod' => '$(INST_LIB)/Jcode/Nihongo.pod' }, ); } WriteMakefile ( NAME => 'Jcode', VERSION_FROM => 'Jcode.pm', PREREQ_PM => { 'MIME::Base64' => "2.1", }, ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'Jcode.pm', # retrieve abstract from module AUTHOR => 'Dan Kogai ') : () ), @EXTRA, );