-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
executable file
·51 lines (49 loc) · 1.26 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env perl
# ----------------------------------------------------------------------
# Makefile.PL
# ----------------------------------------------------------------------
#
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $version = '2.0';
if ( -f 'version' ) {
open( FH, '<version' );
$version = <FH>;
chomp($version);
close(FH);
}
WriteMakefile(
NAME => 'Tachikoma',
DISTNAME => 'Tachikoma',
VERSION => $version,
PREREQ_PM => {
'Crypt::OpenSSL::RSA' => '0.10',
'Net::SSLeay' => '1.00',
'IO::Socket::SSL' => '1.00',
# these are only necessary to pass tests:
'File::Temp' => '0.10',
'BerkeleyDB' => '0.10',
'DBI' => '1.00',
'LWP' => '1.00',
},
INSTALLDIRS => 'site',
EXE_FILES => [
qw(
bin/buffer_top
bin/consume_topic
bin/drain_node
bin/fill_node
bin/produce_topic
bin/set_tachikoma_hz
bin/tachikoma
bin/tachikoma-client
bin/tachikoma-fsync
bin/tachikoma-gui
bin/tachikoma-job
bin/tachikoma-server
bin/tail_top
bin/topic_top
)
],
);