1
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5
6WriteMakefile(
7	'NAME'		=>	'URI::Sequin',
8	'PM'		=>	{ 'Sequin.pm' => '$(INST_LIBDIR)/Sequin.pm',},
9	'PREREQ_PM'	=>	{},
10	'VERSION_FROM'	=>	'Sequin.pm', # finds $VERSION
11);
12