The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;
use English;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.


$abstract = "Database independent text indexing. Currently postgres only";

WriteMakefile(
	      NAME	     => 'DBIx::TextSearch',
	      VERSION_FROM => 'lib/DBIx/TextSearch.pm',
	      PREREQ_PM    => {'DBI', 'Carp', 'Env', 'English', 'Net::FTP',
			      'LWP::Simple', 'LWP::UserAgent',
			       'HTTP::Response', 'SGML::StripParser',
			       'Text::Query', 'URI', 'File::Basename',
			       'HTML::TokeParser', 'Socket', 'Sys::Hostname'
			      },
	      PM           => {'lib/DBIx/TextSearch.pm'
				   => '$(INST_LIBDIR)/TextSearch.pm',
			       'lib/DBIx/TextSearch/developing.pod'
			           => '$(INST_LIBDIR)/TextSearch/developing.pod',
			       'lib/DBIx/TextSearch/Pg.pm'
			           => '$(INST_LIBDIR)/TextSearch/Pg.pm'
			       },
	      ($] >= 5.005 ?
	       (ABSTRACT => $abstract,
		AUTHOR     => 'Stephen Patterson <steve@lexx.uklinux.net>') :())
	      );