summaryrefslogtreecommitdiff
path: root/packages/gdbm/fpmake.pp
blob: a5aeff419449f73a1f712d1a8a67ee8faf2f1d93 (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
36
37
38
39
40
41
42
43
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;

uses fpmkunit;

Var
  P : TPackage;
  T : TTarget;
begin
  With Installer do
    begin
{$endif ALLPACKAGES}

    P:=AddPackage('gdbm');
{$ifdef ALLPACKAGES}
    P.Directory:=ADirectory;
{$endif ALLPACKAGES}
    P.Version:='3.2.0rc1';
    P.Author := 'Library: GNU, header: Michael van Canneyt';
    P.License := 'Library: GPL2 (or later?), header: LGPL with modification, ';
    P.HomepageURL := 'www.freepascal.org';
    P.Email := '';
    P.Description := 'GNU dbm is a set of database routines that use extensible hashing.';
    P.NeedLibC:= true;  // true for headers that indirectly link to libc?
    P.OSes := AllUnixOSes - [qnx];
    if Defaults.CPU=jvm then
      P.OSes := P.OSes - [java,android];

    P.SourcePath.Add('src');

    T:=P.Targets.AddUnit('gdbm.pp');

    P.ExamplePath.Add('examples');
    P.Targets.AddExampleProgram('testgdbm.pp');
    P.Targets.AddExampleProgram('testgdbm2.pp');


{$ifndef ALLPACKAGES}
    Run;
    end;
end.
{$endif ALLPACKAGES}