]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-trusty
LP#1315531 Adding Business::Stripe; Moving CPAN stuff to debs where I can
[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         libtext-aspell-perl\
55         libtext-csv-perl\
56         libuniversal-require-perl\
57         libunix-syslog-perl\
58         libuuid-tiny-perl\
59         libyaz-dev\
60         postgresql-client-9.3\
61         libsoap-lite-perl\
62         libtest-warn-perl\
63         yaz
64
65 export DEB_APACHE_MODS = \
66     expires\
67     include\
68     proxy\
69     proxy_http\
70     rewrite
71
72 export DEB_APACHE_DISMODS = \
73     deflate
74
75 export CPAN_MODULES = \
76         Business::CreditCard::Object \
77         Business::OnlinePayment::PayPal \
78         Business::Stripe \
79         Safe
80
81 export CPAN_MODULES_FORCE = \
82         Class::DBI::Frozen::301
83
84 PGSQL_SERVER_DEBS_93 = \
85         postgresql-9.3 \
86         postgresql-contrib-9.3 \
87         postgresql-plperl-9.3 \
88         postgresql-server-dev-9.3
89
90 all:
91         make -f $(DIR)/Makefile.debian install_debs
92         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
93         make -f $(DIR)/Makefile.common install_cpan
94         make -f $(DIR)/Makefile.common install_cpan_force
95         make -f $(DIR)/Makefile.debian install_js_sm
96         make -f $(DIR)/Makefile.debian debian_sys_config
97
98 install_postgres_server:
99         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_93)"
100
101 clean:
102         make -f $(DIR)/Makefile.common clean
103         make -f $(DIR)/Makefile.debian clean
104
105 # vim:noet:sw=4:ts=4: