File: Makefile.PL

package info (click to toggle)
mime-lite 2.117-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 468 kB
  • ctags: 421
  • sloc: perl: 1,528; makefile: 53
file content (20 lines) | stat: -rwxr-xr-x 506 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl
use ExtUtils::MakeMaker;

#------------------------------------------------------------
# Makefile:
#------------------------------------------------------------

# Write the Makefile:
WriteMakefile(
	      NAME         => 'MIME::Lite',
	      VERSION_FROM => "lib/MIME/Lite.pm",
	      DISTNAME     => "MIME-Lite",
	      EXE_FILES    => [@EXES],
	      'dist'       => {
		  PREOP    => 'cvu_perl_preop -m MIME::Lite -f',
		  COMPRESS => 'gzip',
		  SUFFIX   => 'gz',
	      }
	      );