root/trunk/POE-Session-Magic/Makefile.PL

Revision 13, 0.7 kB (checked in by scottmc, 3 years ago)

Added old perl modules
Starting to think maybe I should structure the new repository differently

Line 
1#!/usr/bin/perl
2# $Id: Makefile.PL,v 1.6 2002/09/10 03:30:51 rcaputo Exp $
3
4use ExtUtils::MakeMaker;
5
6# Touch CHANGES so it exists.
7open(CHANGES, ">>CHANGES") and close CHANGES;
8
9WriteMakefile
10  ( NAME         => 'POE::Session::Magic',
11    AUTHOR       => 'Scott S. McCoy (tag@cpan.org)',
12    ABSTRACT     => 'A very magical way to make POE Sessions',
13    VERSION_FROM => 'Magic.pm',
14
15    PM           => { 'Magic.pm' => '$(INST_LIBDIR)/Magic.pm' },
16    PREREQ_PM    => { POE      => 0.11 },
17    dist         =>
18    { COMPRESS   => 'gzip -9f',
19      SUFFIX     => 'gz',
20      PREOP      => ( 'svn log | ' .
21                      'tee ./$(DISTNAME)-$(VERSION)/CHANGES > ./CHANGES'
22                    ),
23    },
24  );
Note: See TracBrowser for help on using the browser.