]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-precise
f7c9f8203d8c15aac0645f69fead40099d6b6454
[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         libspreadsheet-writeexcel-perl\
50         libsru-perl\
51         libssh2-1-dev\
52         libtext-aspell-perl\
53         libtext-csv-perl\
54         libuniversal-require-perl\
55         libunix-syslog-perl\
56         libuuid-tiny-perl\
57         libyaz-dev\
58         postgresql-client-9.1\
59         libsoap-lite-perl\
60         libtest-warn-perl\
61         libtest-output-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         Business::CreditCard::Object \
76         Business::OnlinePayment::PayPal \
77         Template::Plugin::POSIX \
78         Rose::URI \
79         Safe
80
81 export CPAN_MODULES_FORCE = \
82         Business::Stripe \
83         Class::DBI::Frozen::301
84
85 PGSQL_SERVER_DEBS_91 = \
86         postgresql-9.1 \
87         postgresql-contrib-9.1 \
88         postgresql-plperl-9.1 \
89         postgresql-server-dev-9.1
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_91)"
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: