Initial stab at a Makefile.PL (needs lots more work though)

git-svn-id: https://svn.perl.org/qpsmtpd/trunk@301 958fd67b-6ff1-0310-b445-bb7760255be9
This commit is contained in:
Matt Sergeant 2004-09-05 16:32:23 +00:00
parent 606519b06c
commit 2dc7ab5f8d

13
Makefile.PL Normal file
View File

@ -0,0 +1,13 @@
#!/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 <ask@develooper.com>',
EXE_FILES => [qw(qpsmtpd qpsmtpd-forkserver)],
);