]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-bionic
LP#1793585: Change to use MARC::File::XML
[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_SERVER_DEBS_96 = \
103         $(DEB_PGSQL_COMMON_MODS) \
104         postgresql-9.6 \
105         postgresql-contrib-9.6 \
106         postgresql-plperl-9.6 \
107         postgresql-server-dev-9.6
108
109 # note: some prereqs are repeated in the developer/packager 
110 # sections to support building Evergreen packages on servers
111 # where Evergreen and its prereqs are not installed.
112
113 DEVELOPER_DEBS = \
114         automake \
115         autoconf \
116         libtool
117
118 PACKAGER_DEBS = \
119         asciidoc \
120         source-highlight \
121         zip \
122         unzip \
123         nsis
124
125 TRANSLATOR_DEBS = \
126         libtemplate-perl \
127         liblocale-maketext-lexicon-perl \
128         translate-toolkit \
129         python-dev \
130         python-levenshtein \
131         python-polib \
132         python-setuptools \
133         python-simplejson \
134         python-lxml \
135         bzr
136
137 all:
138         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)"
139         make -f $(DIR)/Makefile.debian debian_postgresql_repo
140         make -f $(DIR)/Makefile.debian install_debs
141         make -f $(DIR)/Makefile.common install_cpan
142         make -f $(DIR)/Makefile.common install_cpan_force
143         make -f $(DIR)/Makefile.common install_cpan_pgsql
144         make -f $(DIR)/Makefile.debian debian_sys_config
145
146 install_postgres_server:
147         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_96)"
148         make -f $(DIR)/Makefile.common install_cpan_pgsql
149
150 # note: if/when grunt-cli is available as a
151 # package, use the packaged version instead.
152 install_developer:
153         make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)"
154         make -f $(DIR)/Makefile.common install_nodejs_from_source
155
156 install_translator: install_developer
157         make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)"
158
159 install_packager: install_developer install_translator
160         make -f $(DIR)/Makefile.debian DEBS="$(PACKAGER_DEBS)"
161
162 clean:
163         make -f $(DIR)/Makefile.common clean
164         make -f $(DIR)/Makefile.debian clean
165
166 # vim:noet:sw=4:ts=4: