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 = ("./apt-show-source");

WriteMakefile( 'NAME' => 'apt-show-source',
	       'VERSION_FROM' => './apt-show-source',
	       'MAN1PODS' =>
	       { './apt-show-source' => './apt-show-source.1' ,
		 './apt-show-source.fr.1.pod' => './apt-show-source.fr.1' ,
		 './apt-show-source.es.1.pod' => './apt-show-source.es.1' ,
	         './apt-show-source.ja.1.pod' => './apt-show-source.ja.1' },
	       'MAN3PODS' => {  },
	       'PM' => { },
	       'EXE_FILES' => \@scripts );
