The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# This -*- perl -*- script writes the Makefile for Sort::ArbBiLex
# Time-stamp: "2004-03-24 15:48:17 AST"
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
require 5.004;
use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'	=> 'Sort::ArbBiLex',
    'VERSION_FROM' => 'ArbBiLex.pm', # finds $VERSION
    'ABSTRACT_FROM' => 'ArbBiLex.pm', # 
    'dist'        => { COMPRESS => 'gzip -6f', SUFFIX => 'gz', },
);

package MY;

sub libscan
{ # Determine things that should *not* be installed
    my($self, $path) = @_;
    return '' if $path =~ m/~/;
    $path;
}

__END__