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

# List here scripts that should be installed 
my @scripts = ("./scripts/dbs_empty",
               "./scripts/dbs_update",
               "./scripts/dbs_printtab",
               "./scripts/dbs_dumptabdata",
               "./scripts/dbs_dumptabstruct");

WriteMakefile(
    'NAME'	=> 'DBIx::Easy',
    AUTHOR        => q{Stefan Hornburg (Racke) <racke@linuxia.de>},
    'VERSION_FROM' => 'Easy.pm', # finds $VERSION
    'ABSTRACT_FROM' => 'Easy.pm',
    'INSTALLMAN3DIR' => '/usr/share/man/man3',
	'INSTALLHTMLSCRIPTDIR' => '/usr/share/doc',
	'INSTALLHTMLSITELIBDIR' => '/usr/share/doc',
    'EXE_FILES' => \@scripts,
);