File: Makefile.PL

package info (click to toggle)
libenv-path-perl 0.19-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 104 kB
  • sloc: perl: 443; makefile: 8
file content (13 lines) | stat: -rwxr-xr-x 290 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'		=> 'Env::Path',
    'VERSION_FROM'	=> 'Path.pm', # finds $VERSION
    'EXE_FILES'		=> [ 'envpath' ],
    'PREREQ_PM'		=> {},
    'dist'		=> {
	COMPRESS => 'gzip --force --best',
	TAR	 => 'gtar',
	TARFLAGS => '--mode=u+w -cvf',
    },
);