| Revision: | 1.6 |
| Committed: | Mon Jun 29 12:40:22 2015 UTC (10 years, 10 months ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-3_75, rel-3_74, HEAD |
| Changes since 1.5: | +1 -1 lines |
| Log Message: | 3.74 |
| # | Content |
|---|---|
| 1 | use ExtUtils::MakeMaker; |
| 2 | |
| 3 | WriteMakefile( |
| 4 | dist => { |
| 5 | PREOP => 'pod2text sense.pod | 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_ARCHLIB)/common/sense.pm', |
| 13 | "sense.pod" => '$(INST_LIB)/common/sense.pod', |
| 14 | }, |
| 15 | clean => { FILES => "sense.pm" }, |
| 16 | ); |
| 17 |