mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:08:08 +02:00
57 lines
1.3 KiB
ObjectPascal
57 lines
1.3 KiB
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses {$ifdef unix}cthreads,{$endif} fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('users');
|
|
P.ShortName := 'user';
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='3.3.1';
|
|
P.Author := 'Michael van Canneyt, Marco van de Voort';
|
|
P.License := 'LGPL with modification, ';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.OSes := [freebsd,linux];
|
|
P.Email := '';
|
|
P.Description := 'Headers to access Unix groups and users.';
|
|
P.NeedLibC:= false;
|
|
|
|
P.SourcePath.Add('src');
|
|
|
|
T:=P.Targets.AddUnit('crypth.pp',[linux]);
|
|
T:=P.Targets.AddUnit('grp.pp');
|
|
T:=P.Targets.AddUnit('pwd.pp');
|
|
T:=P.Targets.AddUnit('shadow.pp',[linux]);
|
|
T:=P.Targets.AddUnit('users.pp');
|
|
with T.Dependencies do
|
|
begin
|
|
AddUnit('pwd');
|
|
AddUnit('shadow',[linux]);
|
|
AddUnit('grp');
|
|
end;
|
|
T.ResourceStrings := true;
|
|
|
|
P.ExamplePath.Add('examples');
|
|
P.Targets.AddExampleProgram('testpass.pp');
|
|
P.Targets.AddExampleProgram('testpass2.pp');
|
|
P.Targets.AddExampleProgram('testuser.pp');
|
|
|
|
|
|
P.NamespaceMap:='namespaces.lst';
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|