File: Makefile.PL

package info (click to toggle)
swatch 3.2.4-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 448 kB
  • sloc: perl: 1,181; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 816 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	   => 'swatchdog',
    'VERSION_FROM' => 'swatchdog',
    'EXE_FILES'    => [ 'swatchdog' ],
    'PREREQ_PM' => {
                     'Time::HiRes' => '1.12',
                     'Date::Calc' => '0',
                     'Date::Format' => '0',
                     'Date::Manip' => '0',
                     'File::Tail' => '0',
                     'Term::ANSIColor' => '0',
                   },
    'dist'         => { 
                        'SUFFIX'       => ".gz",
			'DIST_DEFAULT' => 'all tardist',
			'COMPRESS'     => "gzip -9f" 
                      },
    'realclean'    => { 'FILES' => '' },
    'clean'        => { 'FILES' => '' },
);