]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-trusty
LP#1351355: Switch to XLSX format for Excel report output
[working/Evergreen.git] / Open-ILS / src / extras / install / Makefile.ubuntu-trusty
1 # install files for Ubuntu 14.04 LTS Trusty Tahr
2
3 DIR = $(dir $(lastword $(MAKEFILE_LIST)))
4
5 export DEBS = \
6         apache2-prefork-dev\
7         aspell\
8         aspell-en\
9         libbusiness-creditcard-perl\
10         libbusiness-edi-perl \
11         libbusiness-isbn-data-perl\
12         libbusiness-isbn-perl\
13         libbusiness-issn-perl\
14         libbusiness-onlinepayment-authorizenet-perl\
15         libbusiness-onlinepayment-perl\
16         libdatetime-format-builder-perl\
17         libdatetime-format-iso8601-perl\
18         libdatetime-format-mail-perl\
19         libdatetime-perl\
20         libdatetime-set-perl\
21         libdatetime-timezone-perl\
22         libdbd-pg-perl\
23         libdbd-pgsql \
24         libdbi-dev \
25         libemail-send-perl\
26         libemail-simple-perl\
27         libgd-graph3d-perl\
28         liblibrary-callnumber-lc-perl \
29         liblocale-maketext-lexicon-perl\
30         liblog-log4perl-perl\
31         libmarc-charset-perl \
32         libmarc-record-perl\
33         libmarc-xml-perl \
34         libncurses5-dev\
35         libnet-https-any-perl \
36         libnet-ip-perl\
37         libnet-ldap-perl \
38         libnet-server-perl\
39         libnet-ssh2-perl\
40         libnet-z3950-simple2zoom-perl\
41         libnet-z3950-simpleserver-perl\
42         libnet-z3950-zoom-perl \
43         libnspr4-dev\
44         libole-storage-lite-perl\
45         libbz2-dev \
46         libpq5\
47         libpq-dev\
48         librose-uri-perl\
49         librpc-xml-perl\
50         libsru-perl\
51         libssh2-1-dev\
52         libtemplate-plugin-posix-perl\
53         libtest-output-perl\
54         libtext-aspell-perl\
55         libtext-csv-perl\
56         libuniversal-require-perl\
57         libunix-syslog-perl\
58         libuuid-tiny-perl\
59         libyaz-dev\
60         postgresql-client-9.3\
61         libsoap-lite-perl\
62         libtest-warn-perl\
63         yaz
64
65 export DEB_APACHE_MODS = \
66     cgi\
67     expires\
68     include\
69     proxy\
70     proxy_http\
71     rewrite
72
73 export DEB_APACHE_DISMODS = \
74     deflate
75
76 export DEB_APACHE_DISCONF = \
77     serve-cgi-bin
78
79 export CPAN_MODULES = \
80         Excel::Writer::XLSX \
81         Business::CreditCard::Object \
82         Business::OnlinePayment::PayPal \
83         Safe
84
85 export CPAN_MODULES_FORCE = \
86         Business::Stripe \
87         Class::DBI::Frozen::301
88
89 PGSQL_SERVER_DEBS_93 = \
90         postgresql-9.3 \
91         postgresql-contrib-9.3 \
92         postgresql-plperl-9.3 \
93         postgresql-server-dev-9.3
94
95 all:
96         make -f $(DIR)/Makefile.debian install_debs
97         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
98         make -f $(DIR)/Makefile.common install_cpan
99         make -f $(DIR)/Makefile.common install_cpan_force
100         make -f $(DIR)/Makefile.debian install_js_sm
101         make -f $(DIR)/Makefile.debian debian_sys_config
102
103 install_postgres_server:
104         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_93)"
105
106 clean:
107         make -f $(DIR)/Makefile.common clean
108         make -f $(DIR)/Makefile.debian clean
109
110 # vim:noet:sw=4:ts=4: