ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Games-Sokoban/Makefile.PL
Revision: 1.1
Committed: Tue May 11 23:17:47 2010 UTC (13 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_0, rel-1_01, rel-0_02, HEAD
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use 5.008;
4
5 WriteMakefile(
6 dist => {
7 PREOP => 'pod2text Sokoban.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz',
10 },
11 NAME => "Games::Sokoban",
12 VERSION_FROM => "Sokoban.pm",
13 PREREQ_PM => {
14 common::sense => 0,
15 },
16 );
17