File: Makefile.PL

package info (click to toggle)
libxmms-perl 0.12-5.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 332 kB
  • ctags: 130
  • sloc: perl: 1,634; makefile: 39
file content (14 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use 5.005;
use ExtUtils::MakeMaker;
use lib qw(./lib ../lib);
use Xmms::ExtUtils ();

$inc = Xmms::ExtUtils::inc();
$libs = Xmms::ExtUtils::libs();

WriteMakefile(
    'NAME'	=> 'Xmms::Config',
    'VERSION_FROM' => 'Config.pm',
    'LIBS'	=> [$libs],
    'INC'	=> $inc,
);