1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
dist => {
COMPRESS => 'gzip -9v',
SUFFIX => '.gz',
},
'NAME' => 'Razor2::Preproc::deHTMLxs',
'OBJECT' => q[_deHTMLxs$(OBJ_EXT) deHTMLxs$(OBJ_EXT)],
'VERSION_FROM' => 'deHTMLxs.pm', # finds $VERSION
'LIBS' => [''], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '', # e.g., '-I/usr/include/other'
);
#PREOP => 'pod2text deHTMLxs.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
|