File: Makefile.PL

package info (click to toggle)
cluster3 1.59%2Bds-5
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 5,628 kB
  • sloc: ansic: 9,948; python: 2,018; perl: 1,566; makefile: 132; sh: 27
file content (18 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use ExtUtils::MakeMaker;
use Config;

WriteMakefile(
	NAME		=> 'Algorithm::Cluster',
	AUTHOR		=> 'John Nolan and Michiel de Hoon',
	ABSTRACT	=> 'Perl interface to the C Clustering Library',
	VERSION_FROM	=> 'Cluster.pm',
	PM		=> 
		{
			'Cluster.pm' =>	'$(INST_LIBDIR)/Cluster.pm',
			'Record.pm' =>	'$(INST_LIBDIR)/Cluster/Record.pm',
		},
	LIBS		=> '-lm',
	INC		=> '-I../src',
	MYEXTLIB	=> '../src/libcluster$(LIB_EXT)',
);