Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.PL - github.com/lexborisov/perl-html-myhtml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c6bb4e4e7293e72eb63be181d7b3e5b4161e0bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use utf8;
use Config;

use FindBin;
use ExtUtils::MakeMaker;

my $myhtml_source_dir = $FindBin::Bin ."/source";

WriteMakefile(
    AUTHOR         => 'Alexander Borisov <lex.borisov@gmail.com>',
    ABSTRACT       => 'Fast HTML Parser using Threads with no outside dependencies',
    VERSION_FROM   => 'MyHTML.pm',
    NAME           => 'HTML::MyHTML',
    LICENSE        => 'LGPL 2.1',
    LINKTYPE       => 'dynamic',
    LIBS           => ["-lpthread"],
	CCFLAGS        => " --std=c99 ". $Config{ccflags},
	INC            => "-I$myhtml_source_dir",
);