~diego-fmpwizard/mysql-sandbox/repl-topo-aggr-support

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Giuseppe Maxia
  • Date: 2009-03-29 09:38:55 UTC
  • Revision ID: g.maxia@gmail.com-20090329093855-uie8syy1r12x6brj
- Preparation for version 3.0
- refactoring code to use with ExtUtilis::MakeMaker and install a proper Perl module 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
use warnings;
 
3
 
 
4
use ExtUtils::MakeMaker;
 
5
 
 
6
WriteMakefile(
 
7
    NAME              => 'MySQL::Sandbox',
 
8
    VERSION_FROM      => 'lib/MySQL/Sandbox.pm', # finds $VERSION
 
9
    PREREQ_PM         => {}, # e.g., Module::Name => 1.1
 
10
    EXE_FILES         => [
 
11
                            'bin/sandbox',
 
12
                            'bin/sbtool',
 
13
                            'bin/test_sandbox',
 
14
                            'bin/low_level_make_sandbox',
 
15
                            'bin/make_sandbox',
 
16
                            'bin/make_replication_sandbox',
 
17
                            'bin/make_multiple_sandbox',
 
18
                            'bin/make_multiple_custom_sandbox',
 
19
                         ],
 
20
    ($] >= 5.005 ?     
 
21
      (ABSTRACT       => 'The MySQL Sandbox - A MySQL server installer',
 
22
       AUTHOR         => 'Giuseppe Maxia <g.maxia@gmail.com>'
 
23
      ) : ()),
 
24
);