]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/Makefile.install
LP#1306019 Debian Jessie makefile.install target
[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, libjs with Perl wrapper, 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 LIBJS=js-1.7.0
33 export LIBJS_PERL=JavaScript-SpiderMonkey-0.21
34 export LIBJS_URL=http://ftp.mozilla.org/pub/mozilla.org/js/$(LIBJS).tar.gz
35 export LIBJS_PERL_URL=http://mirror.datapipe.net/pub/CPAN/authors/id/T/TB/TBUSCH/$(LIBJS_PERL).tar.gz
36
37 # used for installing libjs lib and header files
38 export JS_INSTALL_PREFIX=/usr/
39
40 export LIBNET_Z3950_SIMPLESERVER=Net-Z3950-SimpleServer-1.15
41 export LIBNET_Z3950_SIMPLESERVER_URL=http://ftp.indexdata.dk/pub/simpleserver/$(LIBNET_Z3950_SIMPLESERVER)
42
43 # The libdbi sources can be fetched from sourceforge.net.  They are stored on
44 # the open-ils.org site now for ease of direct linking
45 export LIBDBI=libdbi-0.8.3
46 export LIBDBI_DRIVERS=libdbi-drivers-0.8.3
47 export LIBDBI_HOST=http://open-ils.org/~denials/evergreen
48
49 # As this Makefile is designed to be used by a make process running as
50 # root, this will avoid problems on some systems when tar extracts
51 # files and tries to give them the same UID/GID as they have in their
52 # archives, but those accounts don't exist on the local system.
53 #
54 # e.g, libdbi has files set 1000/1000. On most systems, there's a user
55 # and a group with these IDs, but there can be systems where nothing
56 # uses those IDs, and where tar fails with e.g. 'tar: libdbi-0.8.3:
57 # Cannot change ownership to uid 1000, gid 1000: Invalid argument'
58 #
59 export TAR_OPTIONS=--no-same-owner --no-same-permissions
60
61 # ----------------------------------------------------------------------------
62
63 # avoid hard-coding the path to related makefiles
64 DIR = $(dir $(lastword $(MAKEFILE_LIST)))/install
65
66 all:
67         @echo "please specify an OS" && exit 0
68 debian-jessie:
69         @make -f $(DIR)/Makefile.debian-jessie
70 debian-wheezy:
71         @make -f $(DIR)/Makefile.debian-wheezy
72 debian-squeeze: 
73         @make -f $(DIR)/Makefile.debian-squeeze
74 ubuntu-trusty:
75         @make -f $(DIR)/Makefile.ubuntu-trusty
76 ubuntu-precise:
77         @make -f $(DIR)/Makefile.ubuntu-precise
78 fedora:
79         @make -f $(DIR)/Makefile.fedora
80
81 postgres-server-debian-jessie:
82         @make -f $(DIR)/Makefile.debian-jessie install_postgres_server
83 postgres-server-debian-wheezy:
84         @make -f $(DIR)/Makefile.debian-wheezy install_postgres_server
85 postgres-server-debian-squeeze: 
86         @make -f $(DIR)/Makefile.debian-squeeze install_postgres_server
87 postgres-server-ubuntu-trusty:
88         @make -f $(DIR)/Makefile.ubuntu-trusty install_postgres_server
89 postgres-server-ubuntu-precise:
90         @make -f $(DIR)/Makefile.ubuntu-precise install_postgres_server
91 postgres-server-fedora:
92         @make -f $(DIR)/Makefile.fedora install_postgres_server
93
94 # vim:noet:sw=4:ts=4: