]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/extras/Makefile.install
LP#1849208 - Add PostgreSQL 10 Makfile.install targets
[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 (buster, stretch, jessie),
8 # Ubuntu (16.04), Ubuntu (18.04).
9 #
10 # Installs Perl prereqs, libdbi, libdbi-drivers, and libyaz
11 #
12 # usage:
13 #       make -f Makefile.install debian-buster
14 #       - or -
15 #       make -f Makefile.install debian-stretch
16 #       - or -
17 #       make -f Makefile.install debian-jessie
18 #       - or -
19 #       make -f Makefile.install ubuntu-xenial
20 #       - or -
21 #       make -f Makefile.install ubuntu-bionic
22 #       - or -
23 #       make -f Makefile.install fedora
24 #
25 # ---------------------------------------------------------------------
26
27 # variables shared by all installers
28
29 # Make any assumptions about the shell being used explicit
30 export SHELL=/bin/bash 
31
32 export LIBNET_Z3950_SIMPLESERVER=Net-Z3950-SimpleServer-1.15
33 export LIBNET_Z3950_SIMPLESERVER_URL=http://ftp.indexdata.dk/pub/simpleserver/$(LIBNET_Z3950_SIMPLESERVER)
34
35 # The libdbi sources can be fetched from sourceforge.net.  They are stored on
36 # the open-ils.org site now for ease of direct linking
37 export LIBDBI=libdbi-0.8.3
38 export LIBDBI_DRIVERS=libdbi-drivers-0.8.3
39 export LIBDBI_HOST=http://open-ils.org/~denials/evergreen
40
41 # some OSes require a newer version of NodeJS
42 # NOTE: Using the LTS binaries for NodeJS
43 export NODEJS_VERSION=v12.13.0
44 export NODEJS_BINDIR=node-$(NODEJS_VERSION)-linux-x64
45 export NODEJS_TARBIN=$(NODEJS_BINDIR).tar.xz
46 export NODEJS_BINARY="https://nodejs.org/dist/$(NODEJS_VERSION)/$(NODEJS_TARBIN)"
47
48 # As this Makefile is designed to be used by a make process running as
49 # root, this will avoid problems on some systems when tar extracts
50 # files and tries to give them the same UID/GID as they have in their
51 # archives, but those accounts don't exist on the local system.
52 #
53 # e.g, libdbi has files set 1000/1000. On most systems, there's a user
54 # and a group with these IDs, but there can be systems where nothing
55 # uses those IDs, and where tar fails with e.g. 'tar: libdbi-0.8.3:
56 # Cannot change ownership to uid 1000, gid 1000: Invalid argument'
57 #
58 export TAR_OPTIONS=--no-same-owner --no-same-permissions
59
60 # ----------------------------------------------------------------------------
61
62 # avoid hard-coding the path to related makefiles
63 DIR = $(dir $(lastword $(MAKEFILE_LIST)))/install
64
65 all:
66         @echo "please specify an OS" && exit 0
67 debian-buster:
68         @make -f $(DIR)/Makefile.debian-buster
69 debian-stretch:
70         @make -f $(DIR)/Makefile.debian-stretch
71 debian-jessie:
72         @make -f $(DIR)/Makefile.debian-jessie
73 ubuntu-bionic:
74         @make -f $(DIR)/Makefile.ubuntu-bionic
75 ubuntu-xenial:
76         @make -f $(DIR)/Makefile.ubuntu-xenial
77 fedora:
78         @make -f $(DIR)/Makefile.fedora
79
80 postgres-server-debian-buster:
81         @make -f $(DIR)/Makefile.debian-buster install_postgres_server
82 postgres-server-debian-buster-10:
83         @make -f $(DIR)/Makefile.debian-buster install_postgres_server_10
84 postgres-server-debian-stretch:
85         @make -f $(DIR)/Makefile.debian-stretch install_postgres_server
86 postgres-server-debian-stretch-10:
87         @make -f $(DIR)/Makefile.debian-stretch install_postgres_server_10
88 postgres-server-debian-jessie:
89         @make -f $(DIR)/Makefile.debian-jessie install_postgres_server
90 postgres-server-debian-jessie-10:
91         @make -f $(DIR)/Makefile.debian-jessie install_postgres_server_10
92 postgres-server-ubuntu-bionic:
93         @make -f $(DIR)/Makefile.ubuntu-bionic install_postgres_server
94 postgres-server-ubuntu-bionic-10:
95         @make -f $(DIR)/Makefile.ubuntu-bionic install_postgres_server_10
96 postgres-server-ubuntu-xenial:
97         @make -f $(DIR)/Makefile.ubuntu-xenial install_postgres_server
98 postgres-server-ubuntu-xenial-10:
99         @make -f $(DIR)/Makefile.ubuntu-xenial install_postgres_server_10
100 postgres-server-fedora:
101         @make -f $(DIR)/Makefile.fedora install_postgres_server
102
103 ubuntu-bionic-developer:
104         @make -f $(DIR)/Makefile.ubuntu-bionic install_developer
105 ubuntu-xenial-developer:
106         @make -f $(DIR)/Makefile.ubuntu-xenial install_developer
107 debian-buster-developer:
108         @make -f $(DIR)/Makefile.debian-buster install_developer
109 debian-stretch-developer:
110         @make -f $(DIR)/Makefile.debian-stretch install_developer
111 debian-jessie-developer:
112         @make -f $(DIR)/Makefile.debian-jessie install_developer
113
114 ubuntu-bionic-translator:
115         @make -f $(DIR)/Makefile.ubuntu-bionic install_translator
116 ubuntu-xenial-translator:
117         @make -f $(DIR)/Makefile.ubuntu-xenial install_translator
118 debian-buster-translator:
119         @make -f $(DIR)/Makefile.debian-buster install_translator
120 debian-stretch-translator:
121         @make -f $(DIR)/Makefile.debian-stretch install_translator
122 debian-jessie-translator:
123         @make -f $(DIR)/Makefile.debian-jessie install_translator
124
125 ubuntu-bionic-packager:
126         @make -f $(DIR)/Makefile.ubuntu-bionic install_packager
127 ubuntu-xenial-packager:
128         @make -f $(DIR)/Makefile.ubuntu-xenial install_packager
129 debian-buster-packager:
130         @make -f $(DIR)/Makefile.debian-buster install_packager
131 debian-stretch-packager:
132         @make -f $(DIR)/Makefile.debian-stretch install_packager
133 debian-jessie-packager:
134         @make -f $(DIR)/Makefile.debian-jessie install_packager
135
136 # vim:noet:sw=4:ts=4: