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