fpc/packages/unixutil/fpmake.pp
joost c3095c92d9 * Fixed unixutils fmpake.pp file
git-svn-id: trunk@20128 -
2012-01-20 18:02:24 +00:00

31 lines
505 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('unixutil');
{$ifdef ALLPACKAGES}
P.Directory:='unixutil';
{$endif ALLPACKAGES}
P.Version:='2.7.1';
P.OSes:=[Linux];
P.CPUs:=[i386];
P.Dependencies.add('libc');
P.SourcePath.Add('src');
T:=P.Targets.AddUnit('unixutils.pp');
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}