root/lang/perl/Cache-Memcached-Fast-0.12/Makefile.PL @ 21710

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 
1use 5.006;
2use strict;
3use warnings;
4use ExtUtils::MakeMaker;
5
6# See lib/ExtUtils/MakeMaker.pm for details of how to influence
7# the contents of the Makefile that is written.
8WriteMakefile(
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
19sub MY::postamble {
20'
21$(MYEXTLIB): src/Makefile
22        cd src && $(MAKE) $(PASTHRU)
23'
24}
Note: See TracBrowser for help on using the browser.