File: Makefile.PL

package info (click to toggle)
libmath-amoeba-perl 0.05-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 183; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use ExtUtils::MakeMaker;
use Config;

WriteMakefile(
	'NAME'			=> 'Math::Amoeba',
	'LINKTYPE'		=> '$(INST_PM)',
	'VERSION_FROM'	=> 'lib/Math/Amoeba.pm',
	'dist'  => { 
		SUFFIX 	 => 'gz', 
		COMPRESS => 'gzip -f' 
	},
	'clean'	=> {
		'FILES' => '*~'
	},
);