From f0fefb2ec04f7b0b1c3176290b0fc9899bf922fe Mon Sep 17 00:00:00 2001 From: slef Date: Mon, 18 Jul 2005 16:38:57 +0000 Subject: [PATCH] Add start of 2.3 installer. Remove obsolete? files conflicting with 2.3 installer --- C4/MANIFEST | 4 ---- C4/Makefile.PL | 11 ----------- Make.conf.in | 30 ------------------------------ Makefile.PL | 30 ++++++++++++++++++++++++++++++ 4 files changed, 30 insertions(+), 45 deletions(-) delete mode 100644 C4/MANIFEST delete mode 100644 C4/Makefile.PL delete mode 100644 Make.conf.in create mode 100644 Makefile.PL diff --git a/C4/MANIFEST b/C4/MANIFEST deleted file mode 100644 index 5941c6da55..0000000000 --- a/C4/MANIFEST +++ /dev/null @@ -1,4 +0,0 @@ -Makefile.PL -MANIFEST -Search.pm - diff --git a/C4/Makefile.PL b/C4/Makefile.PL deleted file mode 100644 index bc7acf9cba..0000000000 --- a/C4/Makefile.PL +++ /dev/null @@ -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 ') : ()), -); diff --git a/Make.conf.in b/Make.conf.in deleted file mode 100644 index 32e6d73996..0000000000 --- a/Make.conf.in +++ /dev/null @@ -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@ diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000000..fb3ac243f8 --- /dev/null +++ b/Makefile.PL @@ -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 + } +); -- 2.20.1