From 2dc7ab5f8df41d32bc9ad073ed75f544950f7f12 Mon Sep 17 00:00:00 2001 From: Matt Sergeant Date: Sun, 5 Sep 2004 16:32:23 +0000 Subject: [PATCH] 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 --- Makefile.PL | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile.PL 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)], +);