The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;
    
# Define metadata
name            'Term-RawInput';
sign;
author          'Brian M. Kelly <Brian.Kelly@fullautosoftware.net>';
license         'gpl-3.0';
all_from        'lib/Term/RawInput.pm';

requires        'Term::ReadKey'             => 0;
requires        'IO::Handle'                => 0;
auto_install;
WriteAll;

package MY; # so that "SUPER" works right
sub MY::distdir {

   my $inherited = shift->SUPER::distdir(@_);

   $inherited =~ s/^(distdir .*)$/$1 distsignature/m;

   $inherited;

}