r7855@merlin: jquelin | 2007-11-26 13:00:00 +0100
[language-ook.git] / Makefile.PL
blob104850a34cb00b278225b663dfcf9b2220e198cd
1 #!perl
3 # This file is part of Language::Ook.
4 # Copyright (c) 2002-2007 Jerome Quelin, all rights reserved.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the same terms as Perl itself.
11 BEGIN { require 5.006; }
13 use strict;
14 use warnings;
15 use ExtUtils::MakeMaker;
17 WriteMakefile(
18     NAME                => 'Language::Ook',
19     AUTHOR              => 'Jerome Quelin <jquelin@cpan.org>',
20     VERSION_FROM        => 'lib/Language/Ook.pm',
21     ABSTRACT_FROM       => 'lib/Language/Ook.pm',
22     LICENSE             => 'perl',
23     PREREQ_PM           => {
24         'Test::More'    => 0,
25     },
26     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
27     clean => { FILES => [
28                 'Language-Ook-*',
29                 map { ( '*/' x $_ ) . '*~' } 0..3
30                 ] },