Bug 11649 - Always use words "copy number" - intranet
[koha.git] / install-CPAN.pl
1 # cpan_install.pl - Install prerequisites from CPAN then Koha
2
3 ($ARGV[0] =~ /koha-.*z/) || die "
4  Run this as the CPAN-owning user (usually root) with:
5    perl $0 path/to/koha.tgz
6 ";
7
8 # Copyright 2007 MJ Ray
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
16 #
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License along
22 # with Koha; if not, write to the Free Software Foundation, Inc.,
23 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #
25 # Current maintainer MJR http://mjr.towers.org.uk/
26
27 # Create a fake CPAN location for koha
28 use CPAN;
29 CPAN::Config->load;
30 $cpan = $CPAN::Config->{cpan_home};
31 mkdir $cpan.'/sources/authors/id';
32 mkdir $cpan.'/sources/authors/id/K';
33 mkdir $cpan.'/sources/authors/id/K/KO';
34 mkdir $cpan.'/sources/authors/id/K/KO/KOHA';
35
36 # Move the tarball to it
37 $koha = $ARGV[0];
38 ( rename $koha,$cpan.'/sources/authors/id/K/KO/KOHA/'.$koha ) ||
39 die 'Cannot move koha distribution into position.
40 This may be due to an unconfigured CPAN or running as the wrong user.
41 To configure cpan, try perl -MCPAN -e shell
42 Installation aborted';
43
44 # Start the main CPAN install routine
45 CPAN::install('KOHA/'.$koha);