]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-precise
3e62a0fc1eb2b2ccdeed286ec717947ad571e90c
[working/Evergreen.git] / Open-ILS / src / extras / install / Makefile.ubuntu-precise
1 # install files for Ubuntu 12.04 LTS Precise Pangolin
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         librpc-xml-perl\
49         libsru-perl\
50         libssh2-1-dev\
51         libtext-aspell-perl\
52         libtext-csv-perl\
53         libuniversal-require-perl\
54         libunix-syslog-perl\
55         libuuid-tiny-perl\
56         libyaz-dev\
57         postgresql-client-9.1\
58         libsoap-lite-perl\
59         libtest-warn-perl\
60         libtest-output-perl\
61         libparse-recdescent-perl\
62         yaz
63
64 export DEB_APACHE_MODS = \
65     expires\
66     include\
67     proxy\
68     proxy_http\
69     rewrite
70
71 export DEB_APACHE_DISMODS = \
72     deflate
73
74 export CPAN_MODULES = \
75         Excel::Writer::XLSX \
76         Business::CreditCard::Object \
77         Business::OnlinePayment::PayPal \
78         Template::Plugin::POSIX \
79         Rose::URI \
80         Safe
81
82 export CPAN_MODULES_FORCE = \
83         Business::Stripe \
84         Class::DBI::Frozen::301
85
86 PGSQL_SERVER_DEBS_91 = \
87         postgresql-9.1 \
88         postgresql-contrib-9.1 \
89         postgresql-plperl-9.1 \
90         postgresql-server-dev-9.1
91
92 all:
93         make -f $(DIR)/Makefile.debian install_debs
94         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
95         make -f $(DIR)/Makefile.common install_cpan
96         make -f $(DIR)/Makefile.common install_cpan_force
97         make -f $(DIR)/Makefile.debian install_js_sm
98         make -f $(DIR)/Makefile.debian debian_sys_config
99
100 install_postgres_server:
101         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_91)"
102
103 clean:
104         make -f $(DIR)/Makefile.common clean
105         make -f $(DIR)/Makefile.debian clean
106
107 # vim:noet:sw=4:ts=4: