Corrections to links (usually hidden by javascript)
[koha.git] / Makefile.PL
1 # Copyright 2007 MJ Ray
2 #
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17 #
18 # Current maintainer MJR http://mjr.towers.org.uk/
19 # See http://www.koha.org/wiki/?page=KohaInstaller
20
21 use ExtUtils::MakeMaker;
22 use POSIX;
23
24 die "perl 5.6.1 or later required" unless ($] >= 5.006001);
25
26 =head1 NAME
27
28 Makefile.PL - Koha packager and installer
29
30 =head1 SYNOPSIS
31
32 =head2 BASIC INSTALLATION
33
34         perl Makefile.PL
35         make
36         sudo make install
37
38 =head2 PACKAGING RELEASE TARBALLS
39
40         make manifest tardist
41         make manifest zipdist
42
43 =head2 CLEANING UP
44
45         make clean
46
47 =head1 DESCRIPTION
48
49 This is a packager and installer that uses
50 ExtUtils::MakeMaker, which is fairly common
51 on perl systems.
52 As well as building tar or zip files
53 and installing with the above commands,
54 it allows us to check pre-requisites
55 and generate configuration files.
56
57 =head1 VARIABLES
58
59 =head2 NAME, VERSION_FROM, ABSTRACT, AUTHOR
60
61 Basic metadata about this software.
62
63 =head2 NO_META
64
65 Suppress generation of META.yml file.
66
67 =head2 PREREQ_PM
68
69 Hash of perl modules and versions required.
70
71 =head2 PM
72
73 Hash of file mappings
74
75 =head2 CONFIGURE
76
77 Maybe use prompt() here in future to get configuration values 
78 interactively at installation time.
79
80 =head2 PL_FILES
81
82 This is a hash of PL scripts to run after installation and
83 the files to ask them to generate.
84 Maybe use the values from CONFIGURE
85 to generate initial configuration files in future.
86
87 =cut
88
89 WriteMakefile(
90
91     NAME => 'koha',
92     #VERSION => strftime('2.9.%Y%m%d%H',gmtime),
93     VERSION_FROM => 'C4/Context.pm',
94     ABSTRACT => 'Award-winning integrated library system (ILS) and Web OPAC',
95     AUTHOR => 'Koha Developers <koha-devel@nongnu.org>',
96     NO_META => 1,
97     PREREQ_PM => {
98 'CGI' => 3.15,
99 'CGI::Carp' => 1.29,
100 'CGI::Session' => '4.10',
101 'Class::Accessor' => 0.30,
102 'DBD::mysql' => 3.0008,
103 'DBI' => 1.53,
104 'Data::Dumper' => 2.121_08,
105 'Date::Calc' => 5.4,
106 'Date::Manip' => 5.44,
107 'Digest::MD5' => 2.36,
108 'File::Temp' => 0.16,
109 'GD::Barcode::UPCE' => 1.1,
110 'Getopt::Long' => 2.35,
111 'Getopt::Std' => 1.05,
112 'HTML::Template::Pro' => 0.65,
113 'HTTP::Cookies' => 1.39,
114 'HTTP::Request::Common' => 1.26,
115 'LWP::Simple' => 1.41,
116 'LWP::UserAgent' => 2.033,
117 'Lingua::Stem' => 0.82,
118 'List::Util' => 1.18,
119 'Locale::Language' => 2.07,
120 'MARC::Charset' => 0.95,
121 'MARC::File::XML' => 0.86,
122 'MARC::Record' => 1.38,
123 'MIME::Base64' => 3.07,
124 'MIME::QuotedPrint' => 3.07,
125 'Mail::Sendmail' => 0.79,
126 'PDF::API2' => 2.000,
127 'PDF::API2::Page' => 2.000,
128 'PDF::API2::Util' => 2.000,
129 'PDF::Reuse' => 0.33,
130 'PDF::Reuse::Barcode' => 0.05,
131 'POSIX' => 1.09,
132 'Schedule::At' => 1.06',
133 'Term::ANSIColor' => 1.10,
134 'Test' => 1.25,
135 'Test::Harness' => 2.56,
136 'Test::More' => 0.62,
137 'Test::CSV' => 0.01,
138 'Text::Wrap' => 2005.082401,
139 'Time::HiRes' => 1.86,
140 'Time::localtime' => 1.02,
141 'Unicode::Normalize' => 0.32,
142 'XML::Dumper' => 0.81,
143 'XML::LibXML' => 1.59,
144 'XML::SAX::ParserFactory' => 1.01,
145 'XML::Simple' => 2.14,
146 'XML::RSS' => 1.31,
147 'ZOOM' => 1.16,
148         },
149
150         # File tree mapping
151         PM => map_tree(),
152
153         # disable tests
154         'test' => {TESTS => 't/dummy.t'},
155
156 #   CONFIGURE => sub {
157 #     # Ask for options with prompt($question,$default) calls here?
158 #     return { macro => { 'export TEST' => '755' } }
159 #     },
160
161    PL_FILES => { # generator => target(s)
162       'rewrite-config.PL' => [
163          '$(PREFIX)/share/koha/etc/koha-conf.xml',
164          '$(PREFIX)/share/koha/etc/koha-httpd.conf',
165          '$(PREFIX)/share/koha/etc/zebradb/tab/passwd',
166          '$(PREFIX)/share/koha/etc/zebradb/zebra-biblios.cfg',
167          '$(PREFIX)/share/koha/etc/zebradb/zebra-authorities.cfg'
168          ]
169    }
170 #     'opac/getfromintranet.PL' => ['$(INST_LIBDIR)/opac/cgi-bin/detail.pl','$(INST_LIBDIR)/opac/cgi-bin/moredetail.pl','$(INST_LIBDIR)/opac/cgi-bin/search.pl','$(INST_LIBDIR)/opac/cgi-bin/subjectsearch.pl','$(INST_LIBDIR)/opac/cgi-bin/logout.pl'],
171 #     'misc/koha.conf.PL' => '$(INST_LIBDIR)/../etc/koha.conf',
172 #     'misc/apache-koha.conf.PL' => '$(INST_LIBDIR)/../etc/apache-koha.conf',
173 #     'misc/koha.sql.PL' => '$(INST_LIBDIR)/intranet/scripts/koha.sql',
174 #     'z3950/z3950-daemon-options.PL' => '$(INST_LIBDIR)/intranet/scripts/z3950daemon/z3950-daemon-options',
175 #     # fake target to check permissions
176 #     'misc/chmod.PL' => '$(INST_LIBDIR)/fake-target'
177 #     }
178    # need to set ownerships
179    # need to load koha.sql
180    # need to link koha-httpd.conf
181    # need to start z3950-daemon
182 );
183
184 =head1 FUNCTIONS
185
186 =head2 map_tree
187
188 This function lists all files and where to install each one.
189 It returns a hash reference suitable for the PM variable above.
190
191 =cut
192
193 sub map_tree {
194         my %result => ();
195
196 =pod
197
198 C4/*.pm is copied to perl's lib namespace.
199
200 =cut
201         foreach my $src (glob("C4/*.pm")) {
202                 $result{$src} = '$(INST_LIBDIR)/'.$src;
203         }
204
205 =pod
206
207 CGIs are copied to $(PREFIX)/lib/cgi-bin/koha/
208 and other scripts to koha/
209
210 =cut
211         foreach my $src ("mainpage.pl","help.pl",glob("*/*.pl"),glob("installer/*.pm"),glob("*/*/*.pl"),glob("*/*/*/*.pl")) {
212                 if ($src =~ /(misc|updater|rss)\//) {
213                         $result{$src} = '$(INST_LIBDIR)/koha/'.$src;
214                 } else {
215                         $result{$src} = '$(PREFIX)/lib/cgi-bin/koha/'.$src;
216                 }
217         }
218
219 =pod
220
221 Templates are copied to koha/templates,
222
223 =cut
224         foreach my $src (glob("koha-tmpl/*"),glob("koha-tmpl/intranet-tmpl/*/*/*"),glob("koha-tmpl/intranet-tmpl/*/*/*/*"),glob("koha-tmpl/intranet-tmpl/*/*/*/*/*"),glob("koha-tmpl/opac-tmpl/*/*/*"),glob("koha-tmpl/opac-tmpl/*/*/*/*"),glob("koha-tmpl/opac-tmpl/*/*/*/*/*")) {
225
226 =pod
227
228 excluding non-files, CVS files and whitespace in filenames.
229
230 =cut
231                 if ((-f $src) && ($src !~ /(\/CVS\/|\s)/)) {
232                         $result{$src} = '$(INST_LIBDIR)/koha/templates/'.$src;
233                 }
234         }
235 =pod
236
237 etc files are copied to /usr/share/koha/etc/
238
239 =cut
240         # Misc etc to koha/etc
241         foreach my $src (glob("etc/zebradb/*/*/*"),glob("etc/zebradb/*/*"),glob("etc/zebradb/*"),glob("etc/*")) {
242                 if (-f $src) {
243                         $result{$src} = '$(PREFIX)/share/koha/'.$src;
244                 }
245         }
246
247
248         return \%result;
249 }
250
251 __END__
252
253
254 =head1 SEE ALSO
255
256 ExtUtils::MakeMaker(3)
257
258 =head1 AUTHOR
259
260 MJ Ray mjr at phonecoop.coop
261
262 =cut
263