fpc/packages/aspell/fpmake.pp
2008-01-26 22:41:08 +00:00

34 lines
543 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('aspell');
{$ifdef ALLPACKAGES}
P.Directory:='aspell';
{$endif ALLPACKAGES}
P.Version:='2.0.0';
P.SourcePath.Add('src');
T:=P.Targets.AddUnit('aspell.pp');
T:=P.Targets.AddUnit('scheck.pp');
with T.Dependencies do
begin
AddUnit('aspell');
end;
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}