fpmake.pp 833 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {$ifndef ALLPACKAGES}
  2. {$mode objfpc}{$H+}
  3. program fpmake;
  4. uses {$ifdef unix}cthreads,{$endif} fpmkunit;
  5. Var
  6. T : TTarget;
  7. P : TPackage;
  8. begin
  9. With Installer do
  10. begin
  11. {$endif ALLPACKAGES}
  12. P:=AddPackage('fastcgi');
  13. P.ShortName := 'fcgi';
  14. {$ifdef ALLPACKAGES}
  15. P.Directory:=ADirectory;
  16. {$endif ALLPACKAGES}
  17. P.Version:='3.3.1';
  18. P.Author := 'FreePascal development team';
  19. P.License := 'LGPL with modification, ';
  20. P.HomepageURL := 'www.freepascal.org';
  21. P.Email := '';
  22. P.Description := 'FastCGI header translation to Pascal';
  23. P.NeedLibC:= false;
  24. P.OSes := AllUnixOSes+AllWindowsOSes+AllAmigaLikeOSes-[qnx];
  25. P.SourcePath.Add('src');
  26. T:=P.Targets.AddUnit('fastcgi.pp');
  27. P.NamespaceMap:='namespaces.lst';
  28. {$ifndef ALLPACKAGES}
  29. Run;
  30. end;
  31. end.
  32. {$endif ALLPACKAGES}