1use ExtUtils::MakeMaker;
2
3# $Id: Makefile.PL,v 1.3 2006/01/20 21:31:27 tans Exp $
4
5# Copyright (c) 2002 Shufeng Tan.  All rights reserved.
6#
7# This package is free software and is provided "as is" without express
8# or implied warranty.  It may be used, redistributed and/or modified
9# under the terms of the Perl Artistic License (see
10# http://www.perl.com/perl/misc/Artistic.html)
11
12# See lib/ExtUtils/MakeMaker.pm for details of how to influence
13# the contents of the Makefile that is written.
14
15WriteMakefile(
16    'NAME'		=> 'Crypt::OICQ',
17    'VERSION_FROM'	=> 'OICQ.pm', # finds $VERSION
18    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
19      (ABSTRACT_FROM => 'OICQ.pm', # retrieve abstract from module
20       AUTHOR     => 'Shufeng Tan <perloicq@yahoo.com>') : ()),
21    'LIBS'		=> [''],
22    'DEFINE'		=> '',
23    'INC'		=> '-I.'
24);
25