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: 96652cfbe8b98f4ebb1f836724e648447b4ba99a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use utf8;

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        => 'Apache 2.0',
    LINKTYPE       => 'dynamic',
    LIBS           => ["-lpthread"],
	CCFLAGS        => "--std=c99",
	INC            => "-I$myhtml_source_dir",
);