ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Games-Go-SGF-Grove/Makefile.PL
Revision: 1.1
Committed: Mon Jul 7 11:01:13 2008 UTC (15 years, 11 months ago) by elmex
Content type: text/plain
Branch: MAIN
Log Message:
initial check in

File Contents

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