|
Revision 267, 492 bytes
(checked in by bradfitz, 4 years ago)
|
|
moving this to CPAN-happier spot
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | use ExtUtils::MakeMaker; |
|---|
| 2 | WriteMakefile( 'NAME' => 'Cache::Memcached', |
|---|
| 3 | 'VERSION_FROM' => 'lib/Cache/Memcached.pm', |
|---|
| 4 | 'PREREQ_PM' => { |
|---|
| 5 | 'Storable' => 0, |
|---|
| 6 | 'Time::HiRes' => 0, |
|---|
| 7 | 'String::CRC32' => 0, |
|---|
| 8 | }, |
|---|
| 9 | ($] >= 5.005 ? |
|---|
| 10 | (ABSTRACT_FROM => 'lib/Cache/Memcached.pm', |
|---|
| 11 | AUTHOR => 'Brad Fitzpatrick <brad@danga.com>') : ()), |
|---|
| 12 | ); |
|---|
| 13 | |
|---|