The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#
# Makefile.PL for PDF::Create
#
use 5.005;
use ExtUtils::MakeMaker;

WriteMakefile(
	NAME          => "PDF::Create",
	VERSION_FROM  => "lib/PDF/Create.pm",
#    VERSION       => "$version",
	ABSTRACT_FROM => "lib/PDF/Create.pm",
	LICENSE       => "perl",
	dist          => { COMPRESS => "gzip", SUFFIX => "gz" },
	clean 		  => { FILES => '*.bak *.old mibs/*.dump *.pdf' . 'lib/*/*~ lib/*/*/*~' },
	PL_FILES      => {},		# prevent Build.PL from getting executed
			 );