|
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 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | use ExtUtils::MakeMaker; |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | open(CHANGES, ">>CHANGES") and close CHANGES; |
|---|
| 8 | |
|---|
| 9 | WriteMakefile |
|---|
| 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 | ); |
|---|