ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Mozilla-Plugin/Makefile.PL
Revision: 1.2
Committed: Fri Feb 23 01:58:41 2001 UTC (23 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 require 5.006;
4
5 WriteMakefile(
6 NAME => 'Mozilla::Plugin',
7 DIR => ['plugin'],
8 VERSION_FROM => 'Plugin.pm',
9 PM => {
10 'Plugin.pm' => '$(INST_LIBDIR)/Plugin.pm',
11 },
12 PREREQ_PM => {
13 Storable => 0.5,
14 },
15 );
16
17 sub MY::postamble {
18 <<"EOF";
19
20 clean ::
21 EOF
22 }
23