]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-trusty
Force the installation of Business::Stripe on Ubuntu Trusty.
[working/Evergreen.git] / Open-ILS / src / extras / install / Makefile.ubuntu-trusty
1 # install files for Ubuntu 14.04 LTS Trusty Tahr
2
3 DIR = $(dir $(lastword $(MAKEFILE_LIST)))
4
5 export DEBS = \
6         apache2-prefork-dev\
7         aspell\
8         aspell-en\
9         libbusiness-creditcard-perl\
10         libbusiness-edi-perl \
11         libbusiness-isbn-data-perl\
12         libbusiness-isbn-perl\
13         libbusiness-issn-perl\
14         libbusiness-onlinepayment-authorizenet-perl\
15         libbusiness-onlinepayment-perl\
16         libdatetime-format-builder-perl\
17         libdatetime-format-iso8601-perl\
18         libdatetime-format-mail-perl\
19         libdatetime-perl\
20         libdatetime-set-perl\
21         libdatetime-timezone-perl\
22         libdbd-pg-perl\
23         libdbd-pgsql \
24         libdbi-dev \
25         libemail-send-perl\
26         libemail-simple-perl\
27         libgd-graph3d-perl\
28         liblibrary-callnumber-lc-perl \
29         liblocale-maketext-lexicon-perl\
30         liblog-log4perl-perl\
31         libmarc-charset-perl \
32         libmarc-record-perl\
33         libmarc-xml-perl \
34         libncurses5-dev\
35         libnet-https-any-perl \
36         libnet-ip-perl\
37         libnet-ldap-perl \
38         libnet-server-perl\
39         libnet-ssh2-perl\
40         libnet-z3950-simple2zoom-perl\
41         libnet-z3950-simpleserver-perl\
42         libnet-z3950-zoom-perl \
43         libnspr4-dev\
44         libole-storage-lite-perl\
45         libbz2-dev \
46         libpq5\
47         libpq-dev\
48         librose-uri-perl\
49         librpc-xml-perl\
50         libspreadsheet-writeexcel-perl\
51         libsru-perl\
52         libssh2-1-dev\
53         libtemplate-plugin-posix-perl\
54         libtest-output-perl\
55         libtext-aspell-perl\
56         libtext-csv-perl\
57         libuniversal-require-perl\
58         libunix-syslog-perl\
59         libuuid-tiny-perl\
60         libyaz-dev\
61         postgresql-client-9.3\
62         libsoap-lite-perl\
63         libtest-warn-perl\
64         yaz
65
66 export DEB_APACHE_MODS = \
67     expires\
68     include\
69     proxy\
70     proxy_http\
71     rewrite
72
73 export DEB_APACHE_DISMODS = \
74     deflate
75
76 export CPAN_MODULES = \
77         Business::CreditCard::Object \
78         Business::OnlinePayment::PayPal \
79         Safe
80
81 export CPAN_MODULES_FORCE = \
82         Business::Stripe \
83         Class::DBI::Frozen::301
84
85 PGSQL_SERVER_DEBS_93 = \
86         postgresql-9.3 \
87         postgresql-contrib-9.3 \
88         postgresql-plperl-9.3 \
89         postgresql-server-dev-9.3
90
91 all:
92         make -f $(DIR)/Makefile.debian install_debs
93         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
94         make -f $(DIR)/Makefile.common install_cpan
95         make -f $(DIR)/Makefile.common install_cpan_force
96         make -f $(DIR)/Makefile.debian install_js_sm
97         make -f $(DIR)/Makefile.debian debian_sys_config
98
99 install_postgres_server:
100         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_93)"
101
102 clean:
103         make -f $(DIR)/Makefile.common clean
104         make -f $(DIR)/Makefile.debian clean
105
106 # vim:noet:sw=4:ts=4: