| Revision: | 1.1 |
| Committed: | Sat Jan 8 05:40:06 2011 UTC (15 years, 1 month ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-1_1, rel-1_0, rel-1_2, HEAD |
| Log Message: | *** empty log message *** |
| # | Content |
|---|---|
| 1 | use ExtUtils::MakeMaker; |
| 2 | |
| 3 | my $mm = MM->new({ |
| 4 | dist => { |
| 5 | PREOP => 'pod2text Strip.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 6 | COMPRESS => 'gzip -9v', |
| 7 | SUFFIX => '.gz', |
| 8 | }, |
| 9 | NAME => "Perl::Strip", |
| 10 | VERSION_FROM => "Strip.pm", |
| 11 | EXE_FILES => ["bin/perlstrip"], |
| 12 | PREREQ_PM => { |
| 13 | PPI => 1.213, |
| 14 | Digest::MD5 => 2, |
| 15 | common::sense => 3.3, |
| 16 | }, |
| 17 | }); |
| 18 | |
| 19 | $mm->flush; |
| 20 |