diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..c6a5720 --- /dev/null +++ b/Makefile.PL @@ -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 ', + EXE_FILES => [qw(qpsmtpd qpsmtpd-forkserver)], +);