File: Makefile.PL

package info (click to toggle)
perltidy 20060719-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,496 kB
  • ctags: 608
  • sloc: perl: 17,759; makefile: 45
file content (23 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 
# The indentation of this file is poor because this file may be used to
# test perltidy after installation. For example, try
#
#    perltidy -lp Makefile.PL
#
# which will create a reformatted version as Makefile.PL.tdy.
#
use ExtUtils::MakeMaker;
WriteMakefile(
NAME  => "Perl::Tidy",
VERSION_FROM => "lib/Perl/Tidy.pm",
(
  $] >= 5.005
? (
  ABSTRACT => 'indent and reformat perl scripts',
AUTHOR => 'Steve Hancock <perltidy@perltidy.sourceforge.net>'
  )
: ()
),
EXE_FILES => ['bin/perltidy'],
dist  => { COMPRESS => 'gzip', SUFFIX => 'gz' },
);