mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:07:56 +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('aspell');
|
|
P.ShortName := 'asp';
|
|
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
|
|
P.Version:='3.3.1';
|
|
|
|
P.Author := 'header:Aleš Katona, library: Kevin Atkinson';
|
|
P.License := 'header: LGPL with modification, library: LGPL 2.0 or 2.1';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.OSes := [beos,haiku,freebsd,darwin,iphonesim,ios,netbsd,openbsd,linux,win32,aix,dragonfly];
|
|
P.Email := '';
|
|
P.Description := 'The New Aspell, spelling library';
|
|
P.NeedLibC:= true;
|
|
|
|
P.SourcePath.Add('src');
|
|
|
|
T:=P.Targets.AddUnit('aspell.pp');
|
|
T.Dependencies.AddInclude('src/aspelltypes.inc');
|
|
T:=P.Targets.AddUnit('aspelldyn.pp');
|
|
T:=P.Targets.AddUnit('spellcheck.pp');
|
|
with T.Dependencies do
|
|
begin
|
|
AddUnit('aspell');
|
|
end;
|
|
|
|
P.Sources.AddSrc('LICENSE');
|
|
P.Sources.AddSrc('LICENSE.ADDON');
|
|
|
|
P.ExamplePath.Add('examples');
|
|
T:=P.Targets.AddExampleProgram('example.pas');
|
|
|
|
|
|
P.NamespaceMap:='namespaces.lst';
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|