ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Devel-FindRef/Makefile.PL
Revision: 1.4
Committed: Fri Jun 23 14:40:34 2017 UTC (6 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.3: +4 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use 5.008003;
4
5 WriteMakefile(
6 dist => {
7 PREOP => 'pod2text FindRef.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz',
10 },
11 PREREQ_PM => {
12 common::sense => 0,
13 },
14 TEST_REQUIRES => {
15 Task::Weaken => 0,
16 },
17 NAME => "Devel::FindRef",
18 VERSION_FROM => "FindRef.pm",
19 );
20