File: Makefile.PL

package info (click to toggle)
libaudio-mixer-perl 0.7-3
  • links: PTS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 76 kB
  • ctags: 30
  • sloc: ansic: 239; perl: 96; makefile: 51
file content (14 lines) | stat: -rw-r--r-- 530 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'Audio::Mixer',
    'VERSION_FROM' => 'Mixer.pm', # finds $VERSION
    'LIBS'	=> [''],   # e.g., '-lm' 
    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING' 
    'INC'	=> '',     # e.g., '-I/usr/include/other' 
     clean     => {'FILES' => 'Mix.o'},
    'MYEXTLIB' => 'Mix.o', 
    AUTHOR => "Sergey Gribov <sergey@sergey.com>",
    ABSTRACT_FROM => "Mixer.pm",
);