]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-precise
Fix typo in Makefile.ubuntu-precise.
[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-onlinepayment-authorizenet-perl\
14         libbusiness-onlinepayment-perl\
15         libdatetime-format-builder-perl\
16         libdatetime-format-iso8601-perl\
17         libdatetime-format-mail-perl\
18         libdatetime-perl\
19         libdatetime-set-perl\
20         libdatetime-timezone-perl\
21         libdbd-pg-perl\
22         libdbd-pgsql \
23         libdbi-dev \
24         libemail-send-perl\
25         libemail-simple-perl\
26         libgd-graph3d-perl\
27         liblibrary-callnumber-lc-perl \
28         liblocale-maketext-lexicon-perl\
29         liblog-log4perl-perl\
30         libmarc-charset-perl \
31         libmarc-record-perl\
32         libmarc-xml-perl \
33         libncurses5-dev\
34         libnet-https-any-perl \
35         libnet-ip-perl\
36         libnet-ldap-perl \
37         libnet-server-perl\
38         libnet-ssh2-perl\
39         libnet-z3950-simple2zoom-perl\
40         libnet-z3950-zoom-perl \
41         libnspr4-dev\
42         libole-storage-lite-perl\
43         libbz2-dev \
44         libpq5\
45         libpq-dev\
46         librpc-xml-perl\
47         libspreadsheet-writeexcel-perl\
48         libsru-perl\
49         libssh2-1-dev\
50         libtext-aspell-perl\
51         libtext-csv-perl\
52         libuniversal-require-perl\
53         libunix-syslog-perl\
54         libuuid-tiny-perl\
55         libyaz-dev\
56         postgresql-client-9.1\
57         libsoap-lite-perl\
58         libtest-warn-perl\
59         yaz
60
61 export DEB_APACHE_MODS = \
62     expires\
63     include\
64     proxy\
65     proxy_http\
66     rewrite
67
68 export DEB_APACHE_DISMODS = \
69     deflate
70
71 export CPAN_MODULES = \
72         Business::CreditCard::Object \
73         Business::OnlinePayment::PayPal \
74         Template::Plugin::POSIX \
75         Rose::URI \
76         Safe
77
78 export CPAN_MODULES_FORCE = \
79         Class::DBI::Frozen::301
80
81 PGSQL_SERVER_DEBS_91 = \
82         postgresql-9.1 \
83         postgresql-contrib-9.1 \
84         postgresql-plperl-9.1 \
85         postgresql-server-dev-9.1
86
87 all:
88         make -f $(DIR)/Makefile.debian install_debs
89         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
90         make -f $(DIR)/Makefile.common install_net_z3950_simpleserver
91         make -f $(DIR)/Makefile.common install_cpan
92         make -f $(DIR)/Makefile.common install_cpan_force
93         make -f $(DIR)/Makefile.debian install_js_sm
94         make -f $(DIR)/Makefile.debian debian_sys_config
95
96 install_postgres_server:
97         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_91)"
98
99 clean:
100         make -f $(DIR)/Makefile.common clean
101         make -f $(DIR)/Makefile.debian clean
102
103 # vim:noet:sw=4:ts=4: