]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/Makefile.install
LP1970667: Add Installation Support for Ubuntu 22.04 (Jammy Jellyfish)
[working/Evergreen.git] / Open-ILS / src / extras / Makefile.install
1 # ---------------------------------------------------------------------
2 # Author: Bill Erickson <erickson@esilibrary.com>
3 # Author: Dan Scott <dscott@laurentian.ca>
4 #
5 # Makefile to install prerequisites for OpenSRF and Evergreen
6 #
7 # Currently supports Debian (bullseye, buster, stretch),
8 # Ubuntu (18.04), Ubuntu (20.04).
9 #
10 # Installs Perl prereqs, libdbi, libdbi-drivers, and libyaz
11 #
12 # usage:
13 #       make -f Makefile.install debian-bullseye
14 #       - or -
15 #       make -f Makefile.install debian-buster
16 #       - or -
17 #       make -f Makefile.install debian-stretch
18 #       - or -
19 #       make -f Makefile.install ubuntu-bionic
20 #       - or -
21 #       make -f Makefile.install ubuntu-focal
22 #       - or -
23 #       make -f Makefile.install ubuntu-jammy
24 #       - or -
25 #       make -f Makefile.install fedora
26 #
27 # ---------------------------------------------------------------------
28
29 # variables shared by all installers
30
31 # Make any assumptions about the shell being used explicit
32 export SHELL=/bin/bash 
33
34 export LIBNET_Z3950_SIMPLESERVER=Net-Z3950-SimpleServer-1.15
35 export LIBNET_Z3950_SIMPLESERVER_URL=http://ftp.indexdata.dk/pub/simpleserver/$(LIBNET_Z3950_SIMPLESERVER)
36
37 # The libdbi sources can be fetched from sourceforge.net.  They are stored on
38 # the open-ils.org site now for ease of direct linking
39 export LIBDBI=libdbi-0.8.3
40 export LIBDBI_DRIVERS=libdbi-drivers-0.8.3
41 export LIBDBI_HOST=http://open-ils.org/~denials/evergreen
42
43 # some OSes require a newer version of NodeJS
44 # NOTE: Using the LTS binaries for NodeJS
45 export NODEJS_VERSION=v14.18.1
46 export NODEJS_BINDIR=node-$(NODEJS_VERSION)-linux-x64
47 export NODEJS_TARBIN=$(NODEJS_BINDIR).tar.xz
48 export NODEJS_BINARY="https://nodejs.org/dist/$(NODEJS_VERSION)/$(NODEJS_TARBIN)"
49
50 # As this Makefile is designed to be used by a make process running as
51 # root, this will avoid problems on some systems when tar extracts
52 # files and tries to give them the same UID/GID as they have in their
53 # archives, but those accounts don't exist on the local system.
54 #
55 # e.g, libdbi has files set 1000/1000. On most systems, there's a user
56 # and a group with these IDs, but there can be systems where nothing
57 # uses those IDs, and where tar fails with e.g. 'tar: libdbi-0.8.3:
58 # Cannot change ownership to uid 1000, gid 1000: Invalid argument'
59 #
60 export TAR_OPTIONS=--no-same-owner --no-same-permissions
61
62 # ----------------------------------------------------------------------------
63
64 # avoid hard-coding the path to related makefiles
65 DIR = $(dir $(lastword $(MAKEFILE_LIST)))/install
66
67 all:
68         @echo "please specify an OS" && exit 0
69 debian-bullseye:
70         @make -f $(DIR)/Makefile.debian-bullseye
71 debian-buster:
72         @make -f $(DIR)/Makefile.debian-buster
73 debian-stretch:
74         @make -f $(DIR)/Makefile.debian-stretch
75 ubuntu-bionic:
76         @make -f $(DIR)/Makefile.ubuntu-bionic
77 ubuntu-focal:
78         @make -f $(DIR)/Makefile.ubuntu-focal
79 ubuntu-jammy:
80         @make -f $(DIR)/Makefile.ubuntu-jammy
81 fedora:
82         @make -f $(DIR)/Makefile.fedora
83
84 postgres-server-debian-bullseye-10:
85         @make -f $(DIR)/Makefile.debian-bullseye install_postgres_server_10
86 postgres-server-debian-bullseye-11:
87         @make -f $(DIR)/Makefile.debian-bullseye install_postgres_server_11
88 postgres-server-debian-bullseye-12:
89         @make -f $(DIR)/Makefile.debian-bullseye install_postgres_server_12
90 postgres-server-debian-bullseye-13:
91         @make -f $(DIR)/Makefile.debian-bullseye install_postgres_server_13
92 postgres-server-debian-bullseye-14:
93         @make -f $(DIR)/Makefile.debian-bullseye install_postgres_server_14
94 postgres-server-debian-buster-10:
95         @make -f $(DIR)/Makefile.debian-buster install_postgres_server_10
96 postgres-server-debian-buster-11:
97         @make -f $(DIR)/Makefile.debian-buster install_postgres_server_11
98 postgres-server-debian-buster-12:
99         @make -f $(DIR)/Makefile.debian-buster install_postgres_server_12
100 postgres-server-debian-buster-13:
101         @make -f $(DIR)/Makefile.debian-buster install_postgres_server_13
102 postgres-server-debian-buster-14:
103         @make -f $(DIR)/Makefile.debian-buster install_postgres_server_14
104 postgres-server-debian-stretch-10:
105         @make -f $(DIR)/Makefile.debian-stretch install_postgres_server_10
106 postgres-server-debian-stretch-11:
107         @make -f $(DIR)/Makefile.debian-stretch install_postgres_server_11
108 postgres-server-debian-stretch-12:
109         @make -f $(DIR)/Makefile.debian-stretch install_postgres_server_12
110 postgres-server-debian-stretch-13:
111         @make -f $(DIR)/Makefile.debian-stretch install_postgres_server_13
112 postgres-server-debian-stretch-14:
113         @make -f $(DIR)/Makefile.debian-stretch install_postgres_server_14
114 postgres-server-ubuntu-bionic-10:
115         @make -f $(DIR)/Makefile.ubuntu-bionic install_postgres_server_10
116 postgres-server-ubuntu-bionic-11:
117         @make -f $(DIR)/Makefile.ubuntu-bionic install_postgres_server_11
118 postgres-server-ubuntu-bionic-12:
119         @make -f $(DIR)/Makefile.ubuntu-bionic install_postgres_server_12
120 postgres-server-ubuntu-bionic-13:
121         @make -f $(DIR)/Makefile.ubuntu-bionic install_postgres_server_13
122 postgres-server-ubuntu-bionic-14:
123         @make -f $(DIR)/Makefile.ubuntu-bionic install_postgres_server_14
124 postgres-server-ubuntu-focal-10:
125         @make -f $(DIR)/Makefile.ubuntu-focal install_postgres_server_10
126 postgres-server-ubuntu-focal-11:
127         @make -f $(DIR)/Makefile.ubuntu-focal install_postgres_server_11
128 postgres-server-ubuntu-focal-12:
129         @make -f $(DIR)/Makefile.ubuntu-focal install_postgres_server_12
130 postgres-server-ubuntu-focal-13:
131         @make -f $(DIR)/Makefile.ubuntu-focal install_postgres_server_13
132 postgres-server-ubuntu-focal-14:
133         @make -f $(DIR)/Makefile.ubuntu-focal install_postgres_server_14
134 postgres-server-ubuntu-jammy-10:
135         @make -f $(DIR)/Makefile.ubuntu-jammy install_postgres_server_10
136 postgres-server-ubuntu-jammy-11:
137         @make -f $(DIR)/Makefile.ubuntu-jammy install_postgres_server_11
138 postgres-server-ubuntu-jammy-12:
139         @make -f $(DIR)/Makefile.ubuntu-jammy install_postgres_server_12
140 postgres-server-ubuntu-jammy-13:
141         @make -f $(DIR)/Makefile.ubuntu-jammy install_postgres_server_13
142 postgres-server-ubuntu-jammy-14:
143         @make -f $(DIR)/Makefile.ubuntu-jammy install_postgres_server_14
144 postgres-server-fedora:
145         @make -f $(DIR)/Makefile.fedora install_postgres_server
146
147 ubuntu-bionic-developer:
148         @make -f $(DIR)/Makefile.ubuntu-bionic install_developer
149 ubuntu-focal-developer:
150         @make -f $(DIR)/Makefile.ubuntu-focal install_developer
151 ubuntu-jammy-developer:
152         @make -f $(DIR)/Makefile.ubuntu-jammy install_developer
153 debian-bullseye-developer:
154         @make -f $(DIR)/Makefile.debian-bullseye install_developer
155 debian-buster-developer:
156         @make -f $(DIR)/Makefile.debian-buster install_developer
157 debian-stretch-developer:
158         @make -f $(DIR)/Makefile.debian-stretch install_developer
159
160 ubuntu-bionic-translator:
161         @make -f $(DIR)/Makefile.ubuntu-bionic install_translator
162 ubuntu-focal-translator:
163         @make -f $(DIR)/Makefile.ubuntu-focal install_translator
164 ubuntu-jammy-translator:
165         @make -f $(DIR)/Makefile.ubuntu-jammy install_translator
166 debian-bullseye-translator:
167         @make -f $(DIR)/Makefile.debian-bullseye install_translator
168 debian-buster-translator:
169         @make -f $(DIR)/Makefile.debian-buster install_translator
170 debian-stretch-translator:
171         @make -f $(DIR)/Makefile.debian-stretch install_translator
172
173 ubuntu-bionic-packager:
174         @make -f $(DIR)/Makefile.ubuntu-bionic install_packager
175 ubuntu-focal-packager:
176         @make -f $(DIR)/Makefile.ubuntu-focal install_packager
177 ubuntu-jammy-packager:
178         @make -f $(DIR)/Makefile.ubuntu-jammy install_packager
179 debian-bullseye-packager:
180         @make -f $(DIR)/Makefile.debian-bullseye install_packager
181 debian-buster-packager:
182         @make -f $(DIR)/Makefile.debian-buster install_packager
183 debian-stretch-packager:
184         @make -f $(DIR)/Makefile.debian-stretch install_packager
185
186 # vim:noet:sw=4:ts=4: