1# This -*-perl-*- script writes the Makefile for installing this distribution.
2#
3# See "perldoc perlmodinstall" or "perldoc ExtUtils::MakeMaker" for
4# info on how to control how the installation goes.
5#
6#                                       Time-stamp: "2005-01-29 15:11:45 AST"
7
8require 5.004;
9use strict;
10use ExtUtils::MakeMaker;
11
12WriteMakefile(
13   NAME          => 'MIDI-Perl',
14   VERSION_FROM  => 'lib/MIDI.pm',
15   ABSTRACT  => 'read, compose, modify, and write MIDI files',
16   'dist'        => { COMPRESS => 'gzip -6f', SUFFIX => 'gz', },
17);
18