The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/bin/bash

perl -pe '/^=head1 DESCRIPTION/ and print <STDIN>' lib/MMapDB.pm >README.pod <<EOF
=head1 INSTALLATION

 perl Makefile.PL
 make
 make test
 make install

=head1 DEPENDENCIES

=over 4

=item * perl 5.8.8

=item * File::Map 0.16

=back

EOF

perldoc -tU README.pod >README
rm README.pod