File: Makefile.PL

package info (click to toggle)
libmidi-alsa-perl 1.22-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 448 kB
  • sloc: perl: 5,172; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 456 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
# Bug #52416: 5.6.2 fails with "xref is not of type AVPtr"
# die "5.6.2 unsupported" if $] eq '5.006002';
use 5.006_001;  # 1.16

WriteMakefile(
	NAME      => 'MIDI::ALSA',
	VERSION_FROM => 'ALSA.pm',
	EXE_FILES => [ glob "bin/*" ],
	AUTHOR    => 'PJB, Peter Billam, www.pjb.com.au/comp/contact.html',
	ABSTRACT  => 'Access to the ALSA library',
	LIBS      => ["-lasound"],
	dist      => {COMPRESS=>'gzip -9f', SUFFIX => 'gz'},
);