r5097@merlin: jquelin | 2007-05-25 18:57:02 +0200
[language-ook.git] / Makefile.PL
blobee99986cb93eeb3c3e0a24f844b4e55da600f030
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 use strict;
12 use warnings;
13 use ExtUtils::MakeMaker;
15 WriteMakefile(
16     NAME                => 'Language::Ook',
17     AUTHOR              => 'Jerome Quelin <jquelin@cpan.org>',
18     VERSION_FROM        => 'lib/Language/Ook.pm',
19     ABSTRACT_FROM       => 'lib/Language/Ook.pm',
20     LICENSE             => 'perl',
21     PREREQ_PM           => {},
22     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
23     clean => { FILES => [
24                 'Language-Ook-*',
25                 map { ( '*/' x $_ ) . '*~' } 0..3
26                 ] },