File: Makefile.PL

package info (click to toggle)
libmidi-perl 0.80-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, jessie, jessie-kfreebsd, lenny, sarge, squeeze, wheezy
  • size: 244 kB
  • ctags: 122
  • sloc: perl: 1,821; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 527 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This -*- perl -*- script writes the Makefile for MIDI-Perl
# Time-stamp: "2002-11-16 02:12:43 MST"
require 5.004;
use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
   NAME          => 'MIDI-Perl',
   VERSION_FROM  => 'lib/MIDI.pm',
   ABSTRACT  => 'read, compose, modify, and write MIDI files',
   'dist'        => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
);

package MY;

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

__END__