|
@@ -11,17 +11,21 @@ begin
|
|
With Installer do
|
|
With Installer do
|
|
begin
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
{$endif ALLPACKAGES}
|
|
-
|
|
|
|
P:=AddPackage('symbolic');
|
|
P:=AddPackage('symbolic');
|
|
{$ifdef ALLPACKAGES}
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:='symbolic';
|
|
P.Directory:='symbolic';
|
|
{$endif ALLPACKAGES}
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.2.2-0';
|
|
P.Version:='2.2.2-0';
|
|
|
|
+ P.Author := 'Marco van de Voort';
|
|
|
|
+ P.License := 'LGPL with modification, ';
|
|
|
|
+ P.ExternalURL := 'www.freepascal.org';
|
|
|
|
+ P.Email := '';
|
|
|
|
+ P.Description := 'Expression parser with support for fast evaluation';
|
|
|
|
+ P.NeedLibC:= false;
|
|
|
|
+
|
|
P.SourcePath.Add('src');
|
|
P.SourcePath.Add('src');
|
|
P.IncludePath.Add('src');
|
|
P.IncludePath.Add('src');
|
|
|
|
|
|
-// P.Dependencies.Add('x11');
|
|
|
|
-
|
|
|
|
T:=P.Targets.AddUnit('symbolic.pas');
|
|
T:=P.Targets.AddUnit('symbolic.pas');
|
|
with T.Dependencies do
|
|
with T.Dependencies do
|
|
begin
|
|
begin
|
|
@@ -35,7 +39,8 @@ begin
|
|
P.ExamplePath.Add('examples');
|
|
P.ExamplePath.Add('examples');
|
|
P.Targets.AddExampleProgram('evaltest.pas');
|
|
P.Targets.AddExampleProgram('evaltest.pas');
|
|
P.Targets.AddExampleProgram('rpnthing.pas');
|
|
P.Targets.AddExampleProgram('rpnthing.pas');
|
|
-
|
|
|
|
|
|
+ P.Sources.AddDoc('doc/optimization.txt');
|
|
|
|
+ P.Sources.AddDoc('doc/symbolic.txt');
|
|
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
Run;
|