makefile.pl

来自「聚类分析的源码集」· PL 代码 · 共 28 行

PL
28
字号
use ExtUtils::MakeMaker;use File::Copy;#use POSIX qw(uname);#$Verbose=1;# Check this is a supported OS release#my ($sys, $rel) = (POSIX::uname())[0,2];if ($^V lt v5.6) {   die("Algorithm::Cluster is only supported on Perl 5.6.0 and later.\n" .   "Your perl version is $].\n");}copy("perl/MANIFEST.perl","MANIFEST");WriteMakefile(	NAME         => 'Algorithm-Cluster',	VERSION_FROM => 'perl/Cluster.pm',        DISTNAME     => 'Algorithm-Cluster',        AUTHOR       => 'John Nolan and Michiel de Hoon (mdehoon@ims.u-tokyo.ac.jp',        ABSTRACT     => 'Perl interface to the C Clustering Library',	DIR          => [ 		'src', 		'perl',	],);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?