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