root/lang/perl/Acme-DRYCopyPaste/trunk/Makefile.PL

Revision 8922, 0.5 kB (checked in by tomyhero, 9 months ago)

lang/perl/Acke-DRYCopyPaste : コピーペーストをDRYで実現。

Line 
1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6    NAME                => 'Acme::DRYCopyPaste',
7    AUTHOR              => 'Tomohiro Teranishi <tomohiro.teranishi@gmail.com>',
8    VERSION_FROM        => 'lib/Acme/DRYCopyPaste.pm',
9    ABSTRACT_FROM       => 'lib/Acme/DRYCopyPaste.pm',
10    PL_FILES            => {},
11    PREREQ_PM => {
12        'Test::More' => 0,
13    },
14    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
15    clean               => { FILES => 'Acme-DRYCopyPaste-*' },
16);
Note: See TracBrowser for help on using the browser.