File: Makefile.PL

package info (click to toggle)
libtk-objscanner-perl 2.012-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 160 kB
  • ctags: 17
  • sloc: perl: 497; makefile: 4
file content (26 lines) | stat: -rw-r--r-- 645 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
use ExtUtils::MakeMaker;

require 5.006 ;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile
  (
   'NAME'	=> 'Tk::ObjScanner',
   'VERSION_FROM' => 'ObjScanner.pm',
   'dist' => {COMPRESS=>'gzip -9f', SUFFIX => 'gz'},
    PM            => 
   {
    'ObjScanner.pm'   => '$(INST_LIB)/Tk/ObjScanner.pm',
   },
   ABSTRACT   => 'A scanner to view an object\'s attribute',
   AUTHOR     => 'Dominique Dumont (ddumont@cpan.org)',
   'PREREQ_PM' =>
   {
    'Tk' => 0,
    'Tk::Adjuster' => 0,
    'Tk::HList' => 0,
    'Tk::ROText' => 0,
    'Scalar::Util' => 1.01
   }
);