-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcpanfile
34 lines (31 loc) · 1.04 KB
/
cpanfile
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
requires 'Mojolicious', '>= 9.21';
requires 'Mojolicious::Plugin::Qooxdoo', '>= 1.0.13';
requires 'Mojo::Server::FastCGI';
requires 'Config::Grammar';
requires 'JSON::XS';
requires 'YAML';
requires 'Params::Validate';
requires 'SIAM';
requires 'DBI';
requires 'DBD::SQLite';
requires 'Excel::Writer::XLSX';
requires 'Spreadsheet::WriteExcel';
requires 'IO::Socket::SSL';
requires 'Text::CSV_XS';
if ($ENV{ORACLE_HOME}) {
requires 'DBD::Oracle';
}
else {
print <<'ORACLE_END';
=====================================================================
If you want to install the DBD::Oracle to allow oracle-db-access from
SIAM, make sure you have the ORACLE_HOME environment variable
pointing to the location where you have the Oracle Instant Client
and the SDK unpacked. Get your copies of these files from
https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html
Then run:
$ touch cpanfile
$ ORACLE_HOME=/where/you/unpacked/instantclient_21_1 make
=====================================================================
ORACLE_END
}