]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.debian-buster
LP1864371 Angular 10 deps
[Evergreen.git] / Open-ILS / src / extras / install / Makefile.debian-buster
1 # install files for Debian Buster
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         liblocale-maketext-lexicon-perl\
45         liblog-log4perl-perl\
46         libmarc-charset-perl \
47         libncurses5-dev\
48         libnet-ip-perl\
49         libnet-ldap-perl \
50         libnet-server-perl\
51         libnet-ssh2-perl\
52         libnet-z3950-simple2zoom-perl\
53         libnet-z3950-simpleserver-perl\
54         libnet-z3950-zoom-perl \
55         libnspr4-dev\
56         libole-storage-lite-perl\
57         libparent-perl\
58         libpq5\
59         libpq-dev\
60         libpcre3-dev\
61         librpc-xml-perl\
62         libsru-perl\
63         libssh2-1-dev\
64         libtemplate-plugin-posix-perl\
65         libtest-warn-perl\
66         libtest-output-perl\
67         libtext-aspell-perl\
68         libtext-csv-perl\
69         libuniversal-require-perl\
70         libunix-syslog-perl\
71         libyaz-dev\
72         postgresql-client-9.6\
73         libsoap-lite-perl\
74         libbz2-dev\
75         libparse-recdescent-perl\
76         libhtml-defang-perl\
77         yaz
78
79 export DEB_APACHE_MODS = \
80     expires\
81     include\
82     proxy\
83     proxy_http\
84     rewrite\
85     cgi\
86     perl\
87     remoteip
88
89 export DEB_APACHE_DISMODS = \
90     deflate
91
92 export DEB_APACHE_DISCONF = \
93     serve-cgi-bin
94
95 export CPAN_MODULES = \
96         Business::OnlinePayment::PayPal \
97         Email::Send
98
99 export CPAN_MODULES_FORCE = \
100         Business::Stripe \
101         Class::DBI::Frozen::301
102
103 PGSQL_SERVER_DEBS_96 = \
104         $(DEB_PGSQL_COMMON_MODS) \
105         postgresql-9.6 \
106         postgresql-contrib-9.6 \
107         postgresql-plperl-9.6 \
108         postgresql-server-dev-9.6
109
110 PGSQL_SERVER_DEBS_10 = \
111         $(DEB_PGSQL_COMMON_MODS) \
112         postgresql-10 \
113         postgresql-contrib-10 \
114         postgresql-plperl-10 \
115         postgresql-server-dev-10
116
117 # note: some prereqs are repeated in the developer/packager 
118 # sections to support building Evergreen packages on servers
119 # where Evergreen and its prereqs are not installed.
120
121 DEVELOPER_DEBS = \
122         automake \
123         autoconf \
124         libtool \
125         chromium \
126         firefox-esr
127
128 PACKAGER_DEBS = \
129         asciidoc \
130         source-highlight \
131         zip \
132         unzip \
133         nsis
134
135 TRANSLATOR_DEBS = \
136         libtemplate-perl \
137         liblocale-maketext-lexicon-perl \
138         translate-toolkit \
139         python-dev \
140         python-levenshtein \
141         python-polib \
142         python-setuptools \
143         python-simplejson \
144         python-lxml \
145         bzr
146
147 all:
148         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)"
149         make -f $(DIR)/Makefile.debian debian_postgresql_repo
150         make -f $(DIR)/Makefile.debian install_debs
151         make -f $(DIR)/Makefile.common install_cpan
152         make -f $(DIR)/Makefile.common install_cpan_force
153         make -f $(DIR)/Makefile.debian debian_sys_config
154
155 install_postgres_server:
156         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)"
157         make -f $(DIR)/Makefile.debian debian_postgresql_repo
158         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_96)"
159
160 install_postgres_server_10:
161         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)"
162         make -f $(DIR)/Makefile.debian debian_postgresql_repo
163         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_10)"
164
165 # note: if/when grunt-cli is available as a
166 # package, use the packaged version instead.
167 install_developer:
168         make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)"
169         make -f $(DIR)/Makefile.common install_nodejs_from_source
170
171 install_translator: install_developer
172         make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)"
173
174 install_packager: install_developer install_translator
175         make -f $(DIR)/Makefile.debian DEBS="$(PACKAGER_DEBS)"
176
177 clean:
178         make -f $(DIR)/Makefile.common clean
179         make -f $(DIR)/Makefile.debian clean
180
181 # vim:noet:sw=4:ts=4: