]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-bionic
LP1825851 Combobox display template option
[working/Evergreen.git] / Open-ILS / src / extras / install / Makefile.ubuntu-bionic
1 # install files for Ubuntu Bionic
2
3 DIR = $(dir $(lastword $(MAKEFILE_LIST)))
4
5 export DEB_PGSQL_COMMON_MODS = \
6         gcc \
7         libbusiness-isbn-perl \
8         libjson-xs-perl \
9         liblibrary-callnumber-lc-perl \
10         libmarc-record-perl \
11         librose-uri-perl \
12         libuuid-tiny-perl \
13         libxml-libxml-perl \
14         libxml-libxslt-perl
15
16 export DEBS = \
17         $(DEB_PGSQL_COMMON_MODS) \
18         apache2-dev\
19         aspell\
20         aspell-en\
21         libapache2-mod-perl2\
22         libbusiness-creditcard-perl\
23         libbusiness-isbn-data-perl\
24         libbusiness-issn-perl\
25         libbusiness-onlinepayment-authorizenet-perl\
26         libbusiness-onlinepayment-payflowpro-perl\
27         libbusiness-onlinepayment-perl\
28         libdate-manip-perl\
29         libdatetime-format-builder-perl\
30         libdatetime-format-iso8601-perl\
31         libdatetime-format-mail-perl\
32         libdatetime-perl\
33         libdatetime-set-perl\
34         libdatetime-timezone-perl\
35         libdbd-pg-perl\
36         libdbd-pgsql\
37         libdbi-dev\
38         libdbi1\
39         libemail-simple-perl\
40         libexcel-writer-xlsx-perl\
41         libgd-graph3d-perl\
42         liblocale-maketext-lexicon-perl\
43         liblog-log4perl-perl\
44         libncurses5-dev\
45         libnet-ip-perl\
46         libnet-ldap-perl \
47         libnet-server-perl\
48         libnet-ssh2-perl\
49         libnet-z3950-simpleserver-perl\
50         libnet-z3950-zoom-perl \
51         libnspr4-dev\
52         libole-storage-lite-perl\
53         libparent-perl\
54         libpq5\
55         libpq-dev\
56         libpcre3-dev\
57         librpc-xml-perl\
58         libsru-perl\
59         libssh2-1-dev\
60         libtemplate-plugin-posix-perl\
61         libtest-warn-perl\
62         libtest-output-perl\
63         libtext-aspell-perl\
64         libtext-csv-perl\
65         libuniversal-require-perl\
66         libunix-syslog-perl\
67         libyaz-dev\
68         postgresql-client-9.6\
69         libsoap-lite-perl\
70         libbz2-dev\
71         libparse-recdescent-perl\
72         yaz
73
74 export DEB_APACHE_MODS = \
75     expires\
76     include\
77     proxy\
78     proxy_http\
79     rewrite\
80     cgi\
81     perl
82
83 export DEB_APACHE_DISMODS = \
84     deflate
85
86 export DEB_APACHE_DISCONF = \
87     serve-cgi-bin
88
89 export CPAN_MODULES = \
90         Business::OnlinePayment::PayPal \
91         Email::Send \
92         MARC::Charset \
93         Net::Z3950::Simple2ZOOM
94
95 export CPAN_MODULES_FORCE = \
96         Business::Stripe \
97         Class::DBI::Frozen::301
98
99 export CPAN_MODULES_PGSQL = \
100         MARC::File::XML
101
102 PGSQL_APT_REPO_DEBS = \
103         wget \
104         ca-certificates
105
106 PGSQL_SERVER_DEBS_96 = \
107         $(DEB_PGSQL_COMMON_MODS) \
108         postgresql-9.6 \
109         postgresql-contrib-9.6 \
110         postgresql-plperl-9.6 \
111         postgresql-server-dev-9.6
112
113 # note: some prereqs are repeated in the developer/packager 
114 # sections to support building Evergreen packages on servers
115 # where Evergreen and its prereqs are not installed.
116
117 DEVELOPER_DEBS = \
118         automake \
119         autoconf \
120         libtool
121
122 PACKAGER_DEBS = \
123         asciidoc \
124         source-highlight \
125         zip \
126         unzip \
127         nsis
128
129 TRANSLATOR_DEBS = \
130         libtemplate-perl \
131         liblocale-maketext-lexicon-perl \
132         translate-toolkit \
133         python-dev \
134         python-levenshtein \
135         python-polib \
136         python-setuptools \
137         python-simplejson \
138         python-lxml \
139         bzr
140
141 all:
142         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)"
143         make -f $(DIR)/Makefile.debian debian_postgresql_repo
144         make -f $(DIR)/Makefile.debian install_debs
145         make -f $(DIR)/Makefile.common install_cpan
146         make -f $(DIR)/Makefile.common install_cpan_force
147         make -f $(DIR)/Makefile.common install_cpan_pgsql
148         make -f $(DIR)/Makefile.debian debian_sys_config
149
150 install_postgres_server:
151         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)"
152         make -f $(DIR)/Makefile.debian debian_postgresql_repo
153         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_96)"
154         make -f $(DIR)/Makefile.common install_cpan_pgsql
155
156 # note: if/when grunt-cli is available as a
157 # package, use the packaged version instead.
158 install_developer:
159         make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)"
160         make -f $(DIR)/Makefile.common install_nodejs_from_source
161
162 install_translator: install_developer
163         make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)"
164
165 install_packager: install_developer install_translator
166         make -f $(DIR)/Makefile.debian DEBS="$(PACKAGER_DEBS)"
167
168 clean:
169         make -f $(DIR)/Makefile.common clean
170         make -f $(DIR)/Makefile.debian clean
171
172 # vim:noet:sw=4:ts=4: