]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.debian-wheezy
LP#1392759 developer/packager Makefile.install targets
[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         libdate-manip-perl\
28         libdatetime-format-builder-perl\
29         libdatetime-format-iso8601-perl\
30         libdatetime-format-mail-perl\
31         libdatetime-perl\
32         libdatetime-set-perl\
33         libdatetime-timezone-perl\
34         libdbd-pg-perl\
35         libemail-send-perl\
36         libemail-simple-perl\
37         libgd-graph3d-perl\
38         liblocale-maketext-lexicon-perl\
39         liblog-log4perl-perl\
40         libmarc-charset-perl \
41         libncurses5-dev\
42         libnet-ip-perl\
43         libnet-ldap-perl \
44         libnet-server-perl\
45         libnet-ssh2-perl\
46         libnet-z3950-simple2zoom-perl\
47         libnet-z3950-simpleserver-perl\
48         libnet-z3950-zoom-perl \
49         libnspr4-dev\
50         libole-storage-lite-perl\
51         libparent-perl\
52         libpq5\
53         libpq-dev\
54         librpc-xml-perl\
55         libsru-perl\
56         libssh2-1-dev\
57         libtest-warn-perl\
58         libtest-output-perl\
59         libtext-aspell-perl\
60         libtext-csv-perl\
61         libuniversal-require-perl\
62         libunix-syslog-perl\
63         libyaz-dev\
64         postgresql-client-9.1\
65         libsoap-lite-perl\
66         libbz2-dev\
67         libparse-recdescent-perl\
68         yaz
69
70 export DEB_APACHE_MODS = \
71     expires\
72     include\
73     proxy\
74     proxy_http\
75     rewrite
76
77 export DEB_APACHE_DISMODS = \
78     deflate
79
80 export CPAN_MODULES = \
81         Excel::Writer::XLSX \
82         Business::OnlinePayment::PayPal \
83         Template::Plugin::POSIX \
84         Safe
85
86 export CPAN_MODULES_FORCE = \
87         Business::Stripe \
88         Class::DBI::Frozen::301
89
90 PGSQL_SERVER_DEBS_91 = \
91         $(DEB_PGSQL_COMMON_MODS) \
92         postgresql-9.1 \
93         postgresql-contrib-9.1 \
94         postgresql-plperl-9.1 \
95         postgresql-server-dev-9.1
96
97 PACKAGER_DEBS = \
98         translate-toolkit \
99         python-dev \
100         python-levenshtein \
101         python-polib \
102         python-setuptools \
103         python-simplejson \
104         python-lxml \
105         zip \
106         unzip \
107         nsis
108
109 all:
110         make -f $(DIR)/Makefile.debian install_debs
111         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
112         make -f $(DIR)/Makefile.common install_cpan
113         make -f $(DIR)/Makefile.common install_cpan_force
114         make -f $(DIR)/Makefile.common install_libdbi
115         make -f $(DIR)/Makefile.debian install_js_sm
116         make -f $(DIR)/Makefile.debian debian_sys_config
117
118 install_postgres_server:
119         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_91)"
120
121 install_developer:
122         make -f $(DIR)/Makefile.common install_nodejs_from_source
123
124 install_packager:
125         make -f $(DIR)/Makefile.debian DEBS="$(PACKAGER_DEBS)"
126
127 clean:
128         make -f $(DIR)/Makefile.common clean
129         make -f $(DIR)/Makefile.debian clean
130
131 # vim:noet:sw=4:ts=4: