File: Makefile.PL

package info (click to toggle)
swatch 3.0.4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 152 kB
  • ctags: 48
  • sloc: perl: 1,006; makefile: 47
file content (18 lines) | stat: -rw-r--r-- 668 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	   => 'swatch',
    'VERSION_FROM' => 'swatch',
    'EXE_FILES'    => [ 'swatch', 'swatch_oldrc2newrc' ],
    'PREREQ_PM' => { 'Time::HiRes' => '1.12',
                     'Date::Calc' => '0',
                     'Date::Parse' => '0',
                     'File::Tail' => '0'
                   },
    'dist'         => { 'SUFFIX'       => ".gz",
			'DIST_DEFAULT' => 'all tardist',
			'COMPRESS'     => "gzip -9f" },
    'realclean'    => { 'FILES' => '' },
    'clean'        => { 'FILES' => '' },
);