File: Makefile.PL

package info (click to toggle)
swatch 3.1.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 180 kB
  • ctags: 24
  • sloc: perl: 1,116; makefile: 53
file content (27 lines) | stat: -rw-r--r-- 1,072 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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', 'tools/swatch_oldrc2newrc', 'tools/reswatch'  ],
    'PREREQ_PM' => { 'Time::HiRes' => '1.12',
                     'Date::Calc' => '0',
                     'Date::Parse' => '0',
                   },
    'dist'         => { 'SUFFIX'       => ".gz",
			'DIST_DEFAULT' => 'all tardist',
			'COMPRESS'     => "gzip -9f" },
    'realclean'    => { 'FILES' => '' },
    'clean'        => { 'FILES' => '' },
           'INSTALLVENDORBIN' => '/usr/bin',
           'INSTALLVENDORMAN1DIR' => '/usr/share/man/man1',
           'INSTALLVENDORMAN3DIR' => '/usr/share/man/man3',
           'INSTALLVENDORLIB' => '/usr/share/swatch',
#           'INSTALLVENDORARCH' => '/usr/lib/swatch',
	   'INSTALLVENDORARCH' => '/usr/share/swatch',
#	   'INST_ARCHLIB' => '',
	   'INSTALLSCRIPT' => '/usr/bin',
	   'VENDORPREFIX' => '/usr',
			   
);