ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/common-sense/Makefile.PL
Revision: 1.3
Committed: Tue Jul 30 23:27:09 2013 UTC (10 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_7, rel-3_71
Changes since 1.2: +4 -1 lines
Log Message:
3.7

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4 dist => {
5 PREOP => 'pod2text sense.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
6 COMPRESS => 'gzip -9v',
7 SUFFIX => '.gz',
8 },
9 NAME => "common::sense",
10 VERSION_FROM => "sense.pm.PL",
11 PM => {
12 "sense.pm" => '$(INST_ARCHLIBDIR)/common/sense.pm',
13 "sense.pod" => '$(INST_LIBDIR)/common/sense.pod',
14 },
15 clean => { FILES => "sense.pm" },
16 );
17