cvs commit: qpsmtpd Makefile.PL
[email protected] (Matt Sergeant)
| Newsgroups | perl.cvs.qpsmtpd |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 04/09/05 09:32:23
Added: . Makefile.PL
Log:
Initial stab at a Makefile.PL (needs lots more work though)
Revision Changes Path
1.1 qpsmtpd/Makefile.PL
Index: Makefile.PL
===================================================================
#!/usr/bin/perl -w
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Qpsmtpd',
VERSION_FROM => 'lib/Qpsmtpd.pm',
PREREQ_PM => { },
ABSTRACT_FROM => 'README',
AUTHOR => 'Ask Bjorn Hansen <[email protected]>',
EXE_FILES => [qw(qpsmtpd qpsmtpd-forkserver)],
);