mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-05 05:32:31 +01:00
* Added a fpmake.pp in the root, to compile the utils and packages in one go git-svn-id: trunk@24783 -
36 lines
647 B
ObjectPascal
36 lines
647 B
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('libtar');
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.7.1';
|
|
|
|
P.Author := 'Stefan Heymann';
|
|
P.License := 'LGPL with modification, ';
|
|
P.HomepageURL := 'http://www.destructor.de/';
|
|
P.Description := 'Library for handling tar-files.';
|
|
|
|
P.OSes:=AllOSes-[embedded];
|
|
|
|
P.SourcePath.Add('src');
|
|
T:=P.Targets.AddUnit('libtar.pp');
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|