GPLed
[PerlMail.git] / Makefile.PL
1 #! /usr/bin/perl
2
3 #       $Id$
4 # Copyright (C) 2002-2003 Jan Kratochvil <project-PerlMail@jankratochvil.net>
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 use vars qw($VERSION);
22 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
23 use strict;
24 use warnings;
25
26 use ExtUtils::MakeMaker;
27
28
29 WriteMakefile(
30                 "NAME"=>"PerlMail",
31                 "AUTHOR"=>"Jan Kratochvil <project-PerlMail\@jankratochvil.net>",
32                 "VERSION_FROM"=>"Makefile.PL",
33                 "depend"=>{"Makefile"=>'$(VERSION_FROM)'},
34                 "PREREQ_PM"=>{
35                                 "Carp"=>0,
36                                 "Cz::Cstocs"=>0,
37                                 "DBI"=>0,
38                                 "Fcntl"=>0,
39                                 "File::Basename"=>0,
40                                 "Getopt::Long"=>0,
41                                 "HTML::Entities"=>0,
42                                 "HTTP::Cookies"=>0,
43                                 "HTTP::Request"=>0,
44                                 "IO::Handle"=>0,
45                                 "IO::Socket::INET"=>0,
46                                 "LWP::UserAgent"=>0,
47                                 "Lingua::EN::Squeeze"=>0,
48                                 "MIME::Head"=>0,
49                                 "MIME::Words"=>0,
50                                 "Mail::Address"=>0,
51                                 "Mail::Alias"=>0,
52                                 "Mail::Audit"=>0,
53                                 "Mail::Audit::MAPS"=>0,
54                                 "Mail::Mailer"=>0,
55                                 "POSIX"=>0,
56                                 "Sys::Syslog"=>0,
57                                 "URI::Escape"=>0,
58                                 "User::Utmp"=>0,
59                                 "WWW::SMS::TMobileCZ"=>0,
60                                 },
61                 "EXE_FILES"=>["perlmail-accept","perlmail-submit","perlmail-sendmail","contacts-n9k2mutt"],
62                 );