File: Makefile.PL

package info (click to toggle)
lasso 2.9.0-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 21,528 kB
  • sloc: ansic: 38,474; xml: 23,942; python: 5,305; sh: 5,220; makefile: 1,003; php: 495; perl: 117
file content (17 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use 5;
use ExtUtils::MakeMaker;


if (not grep /^LIBS=/, @ARGV) {
	$LIBS=`pkg-config --libs lasso 2>&1`;
	die "pkg-config cannot find lasso" if $?;
}

WriteMakefile(
    NAME              => 'Lasso',
    VERSION           => $VERSION,
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      ( AUTHOR         => 'Benjamin Dauvergne <bdauvergne@entrouvert.com>') : ()),
    LIBS              => [ "$LIBS" ],
    MAKEFILE          => 'Makefile.perl',
);