ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Games-Go-SGF-Grove/Makefile.PL
Revision: 1.2
Committed: Sun Jul 20 19:21:28 2008 UTC (15 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.1: +4 -6 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 elmex 1.1 use strict;
2     use warnings;
3     use ExtUtils::MakeMaker;
4    
5     WriteMakefile(
6     NAME => 'Games::Go::SGF::Grove',
7 root 1.2 VERSION_FROM => 'Grove.pm',
8     ABSTRACT_FROM => 'Grove.pm',
9 elmex 1.1 PL_FILES => {},
10     PREREQ_PM => {
11     'Test::More' => 0,
12     },
13     dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz',
14 root 1.2 PREOP => 'pod2text lib/Games/Go/SGF/Grove.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
15     },
16 elmex 1.1 clean => { FILES => 'Games-Go-SGF-Grove-*' },
17     );