--- Build.PL 2014-09-01 21:12:14.000000000 +0100 +++ Build.PL.new 2015-01-31 16:34:51.567227766 +0000 @@ -58,38 +58,7 @@ my $builder = MyBuilder->new ], ); -## HACK HACK HACK HACK -my $libdir = $builder->install_destination("bin"); -if ($^O =~ /mswin32/i) { - $libdir = undef; - # Find a place where we can write. - my @folders = split /;/, $ENV{PATH}; - my $installed = 0; - my $target = "text-bibtex.$$"; - while(@folders && !$installed) { - $libdir = shift @folders; - - copy("MANIFEST", catfile($libdir,$target)); - $installed = 1 if -f catfile($libdir, $target); - } - if (!$installed) { - warn("Wasn't able to find a suitable place for libbtparse.dll!"); - } else { - print STDERR "libbtparse.dll will be installed in $libdir\n"; - unlink catfile($libdir, $target); - } -} else { - if ($Config{archname} =~ /^x86_64/) { - $libdir =~ s/\bbin\b/lib64/; - if (!-d $libdir) { - my $test = $libdir; - $test =~ s/lib64/lib/; - $libdir = $test if -d $test; - } - } else { - $libdir =~ s/\bbin\b/lib/; - } -} +my $libdir = '/usr/lib'; $builder->notes('btparse_version' => $version); $builder->notes('lib_path' => $libdir); $builder->add_build_element('usrlib');