Add start of 2.3 installer. Remove obsolete? files conflicting with 2.3 installer

This commit is contained in:
slef 2005-07-18 16:38:57 +00:00
parent bec1be7090
commit f0fefb2ec0
4 changed files with 30 additions and 45 deletions

View file

@ -1,4 +0,0 @@
Makefile.PL
MANIFEST
Search.pm

View file

@ -1,11 +0,0 @@
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'C4::Search',
'VERSION_FROM' => 'Search.pm', # finds $VERSION
'PREREQ_PM' => {}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'Search.pm', # retrieve abstract from module
AUTHOR => 'Koha Dev Team <info@koha.org>') : ()),
);

View file

@ -1,30 +0,0 @@
# Make.conf -*- Makefile -*-
# This file is generated automatically from Make.conf.in by
# safe-installer.
# $Id$
# Useful utilities
PERL = @prog_perl@
MYSQL = @prog_mysql@
MYSQLADMIN = @prog_mysqladmin@
MYSQLDUMP = @prog_mysqldump@
# MySQL administration
DBA_USER = @dba_user@
# Koha database administration
DB_NAME = @db_name@
DB_HOST = @db_host@
DB_USER = @db_user@
# Path to koha.conf file, one for the intranet, the other for the OPAC
# site.
KOHA_CONF_INTRA = @koha_conf_intra@
KOHA_CONF_OPAC = @koha_conf_opac@
OPAC_HOST = @opac_host@
OPAC_REALHOSTS = @opac_realhosts@
INTRA_HOST = @intra_host@
INTRA_REALHOSTS = @intra_realhosts@

30
Makefile.PL Normal file
View file

@ -0,0 +1,30 @@
use ExtUtils::MakeMaker;
die "perl >= 5.6.1 required" unless ($] >= 5.006001);
WriteMakefile(
NAME => 'Koha',
DISTNAME => 'koha',
VERSION => '2.3.0',
PREREQ_PM => {
'DBI' => 1,
'Date::Manip' => 1,
'DBD::MySQL' => 1,
'HTML::Template' => 1,
'Digest::MD5' => 1,
'MARC::Record' => 1,
'Mail::Sendmail' => 1,
'PDF::API2' => 1,
'Net::LDAP' => 1,
'Event' => 1,
'Net::Z3950' => 1
},
CONFIGURE => sub {
# Figure out options here
return {}
},
PM => { # srcfile => dest
},
PL_FILES => { # generator => target
}
);