|
Revision 19958, 0.6 kB
(checked in by mattn, 5 years ago)
|
|
- imported Cache-Memcached-Fast-0.12 (I'll work for porting to win32 later)
|
| Line | |
|---|
| 1 | use 5.006; |
|---|
| 2 | use strict; |
|---|
| 3 | use warnings; |
|---|
| 4 | use ExtUtils::MakeMaker; |
|---|
| 5 | |
|---|
| 6 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence |
|---|
| 7 | # the contents of the Makefile that is written. |
|---|
| 8 | WriteMakefile( |
|---|
| 9 | NAME => 'Cache::Memcached::Fast', |
|---|
| 10 | VERSION_FROM => 'lib/Cache/Memcached/Fast.pm', |
|---|
| 11 | PREREQ_PM => { |
|---|
| 12 | 'Test::More' => 0 |
|---|
| 13 | }, |
|---|
| 14 | ABSTRACT_FROM => 'lib/Cache/Memcached/Fast.pm', |
|---|
| 15 | AUTHOR => 'Tomash Brechko <tomash.brechko@gmail.com>', |
|---|
| 16 | MYEXTLIB => 'src/libclient$(LIB_EXT)', |
|---|
| 17 | ); |
|---|
| 18 | |
|---|
| 19 | sub MY::postamble { |
|---|
| 20 | ' |
|---|
| 21 | $(MYEXTLIB): src/Makefile |
|---|
| 22 | cd src && $(MAKE) $(PASTHRU) |
|---|
| 23 | ' |
|---|
| 24 | } |
|---|