ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Perl-LibExtractor/Makefile.PL
Revision: 1.1
Committed: Fri Jan 13 20:36:40 2012 UTC (13 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3     my $mm = MM->new({
4     dist => {
5     PREOP => 'pod2text LibExtractor.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
6     COMPRESS => 'gzip -9v',
7     SUFFIX => '.gz',
8     },
9     NAME => "Perl::LibExtractor",
10     VERSION_FROM => "LibExtractor.pm",
11     EXE_FILES => ["bin/perlstrip"],
12     PREREQ_PM => {
13     common::sense => 3.4,
14     Perl::Strip => 1.0,
15     },
16     });
17    
18     $mm->flush;
19