[Freyja:~/CVSdev/policymaker] janet% more Makefile.PL use strict; use Data::Dumper; use ExtUtils::MakeMaker; use ExtUtils::Manifest; use ExtUtils::Install; use Config::Tiny; my $config_file = 'data/config.ini'; # parse the config file my $conf = Config::Tiny->read($config_file); my $paths = $conf->{paths}; my %opts = ( NAME => 'PolicyMaker', VERSION => "1.0", INSTALLSITELIB => $paths->{cgilib}, realclean => {FILES => '$(INST_ARCHAUTODIR)/*.old *,v'} , test => {TESTS => 't/*.t'}, dist => {COMPRESS => 'gzip', SUFFIX => '.gz'}, #VERBINST => $conf->{_}->{verbose} ); WriteMakefile( %opts );