File: Makefile.PL

package info (click to toggle)
libcache-memcached-perl 1.30-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 184 kB
  • sloc: perl: 1,101; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
WriteMakefile( 'NAME' => 'Cache::Memcached',
               'VERSION_FROM' => 'lib/Cache/Memcached.pm',
               'PREREQ_PM'              => {
                   'Storable' => 0,
                   'Time::HiRes' => 0,
                   'String::CRC32' => 0,
                   'Encode'        => 0, 
               },
               ($] >= 5.005 ?
                (ABSTRACT_FROM => 'lib/Cache/Memcached.pm',
                 AUTHOR     => 'Brad Fitzpatrick <brad@danga.com>') : ()),
               );