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