ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Mozilla-Plugin/Makefile.PL
Revision: 1.1
Committed: Thu Feb 22 23:18:48 2001 UTC (23 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     WriteMakefile(
4     NAME => 'Mozilla::Plugin',
5     DIR => ['plugin'],
6     VERSION_FROM => 'Plugin.pm',
7     PM => {
8     'Plugin.pm' => '$(INST_LIBDIR)/Plugin.pm',
9     },
10     PREREQ_PM => {
11     Storable => 0.5,
12     },
13     );
14    
15     sub MY::postamble {
16     <<"EOF";
17    
18     clean ::
19     EOF
20     }
21