]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/Makefile.install
LP#1312308 script circ and deps removal
[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 (jessie, wheezy, squeeze), Ubuntu (12.04), 
8 # Ubuntu (14.04) and Fedora (16 and 17).
9 #
10 # Installs Perl prereqs, libdbi, libdbi-drivers, and libyaz
11 #
12 # usage:
13 #       make -f Makefile.install debian-jessie
14 #       - or -
15 #       make -f Makefile.install debian-wheezy
16 #       - or -
17 #       make -f Makefile.install debian-squeeze
18 #       - or -
19 #       make -f Makefile.install ubuntu-precise
20 #       - or -
21 #       make -f Makefile.install ubuntu-trusty
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 source install of NodeJS.
42 # NOTE: Deprecate me with wheezy / precise
43 export NODEJS_SOURCE_VERSION=v0.10.28
44
45 # As this Makefile is designed to be used by a make process running as
46 # root, this will avoid problems on some systems when tar extracts
47 # files and tries to give them the same UID/GID as they have in their
48 # archives, but those accounts don't exist on the local system.
49 #
50 # e.g, libdbi has files set 1000/1000. On most systems, there's a user
51 # and a group with these IDs, but there can be systems where nothing
52 # uses those IDs, and where tar fails with e.g. 'tar: libdbi-0.8.3:
53 # Cannot change ownership to uid 1000, gid 1000: Invalid argument'
54 #
55 export TAR_OPTIONS=--no-same-owner --no-same-permissions
56
57 # ----------------------------------------------------------------------------
58
59 # avoid hard-coding the path to related makefiles
60 DIR = $(dir $(lastword $(MAKEFILE_LIST)))/install
61
62 all:
63         @echo "please specify an OS" && exit 0
64 debian-jessie:
65         @make -f $(DIR)/Makefile.debian-jessie
66 debian-wheezy:
67         @make -f $(DIR)/Makefile.debian-wheezy
68 debian-squeeze: 
69         @make -f $(DIR)/Makefile.debian-squeeze
70 ubuntu-trusty:
71         @make -f $(DIR)/Makefile.ubuntu-trusty
72 ubuntu-precise:
73         @make -f $(DIR)/Makefile.ubuntu-precise
74 fedora:
75         @make -f $(DIR)/Makefile.fedora
76
77 postgres-server-debian-jessie:
78         @make -f $(DIR)/Makefile.debian-jessie install_postgres_server
79 postgres-server-debian-wheezy:
80         @make -f $(DIR)/Makefile.debian-wheezy install_postgres_server
81 postgres-server-debian-squeeze: 
82         @make -f $(DIR)/Makefile.debian-squeeze install_postgres_server
83 postgres-server-ubuntu-trusty:
84         @make -f $(DIR)/Makefile.ubuntu-trusty install_postgres_server
85 postgres-server-ubuntu-precise:
86         @make -f $(DIR)/Makefile.ubuntu-precise install_postgres_server
87 postgres-server-fedora:
88         @make -f $(DIR)/Makefile.fedora install_postgres_server
89
90 ubuntu-trusty-developer:
91         @make -f $(DIR)/Makefile.ubuntu-trusty install_developer
92 debian-jessie-developer:
93         @make -f $(DIR)/Makefile.debian-jessie install_developer
94 ubuntu-precise-developer:
95         @make -f $(DIR)/Makefile.ubuntu-precise install_developer
96 debian-wheezy-developer:
97         @make -f $(DIR)/Makefile.debian-wheezy install_developer
98
99 ubuntu-trusty-packager:
100         @make -f $(DIR)/Makefile.ubuntu-trusty install_packager
101 debian-jessie-packager:
102         @make -f $(DIR)/Makefile.debian-jessie install_packager
103 ubuntu-precise-packager:
104         @make -f $(DIR)/Makefile.ubuntu-precise install_packager
105 debian-wheezy-packager:
106         @make -f $(DIR)/Makefile.debian-wheezy install_packager
107
108 # vim:noet:sw=4:ts=4: