blob: e4c61fe20a2bb34c6c8636b7f9d7c0d1eade5b3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses fpmkunit;
Var
T : TTarget;
P : TPackage;
begin
With Installer do
begin
{$endif ALLPACKAGES}
P:=AddPackage('fastcgi');
{$ifdef ALLPACKAGES}
P.Directory:='fastcgi';
{$endif ALLPACKAGES}
P.Version:='2.6.4';
P.Author := 'FreePascal development team';
P.License := 'LGPL with modification, ';
P.HomepageURL := 'www.freepascal.org';
P.Email := '';
P.Description := 'FastCGI header translation to Pascal';
P.NeedLibC:= false;
P.SourcePath.Add('src');
T:=P.Targets.AddUnit('fastcgi.pp');
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}
|