fpmake.pp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {$ifndef ALLPACKAGES}
  2. {$mode objfpc}{$H+}
  3. program fpmake;
  4. uses fpmkunit;
  5. Var
  6. P : TPackage;
  7. D : TDependency;
  8. begin
  9. With Installer do
  10. begin
  11. {$endif ALLPACKAGES}
  12. P:=AddPackage('fpmkunit');
  13. {$ifdef ALLPACKAGES}
  14. P.Directory:='fpmkunit';
  15. {$endif ALLPACKAGES}
  16. P.Version:='2.2.2-1';
  17. P.Description:='Free Pascal Make Tool';
  18. P.Author := 'Peter Vreman';
  19. P.License := 'LGPL with modification, ';
  20. P.HomepageURL := 'www.freepascal.org';
  21. P.Email := '';
  22. P.Description := 'Basic library of the fpmake/fppkg build system.';
  23. P.NeedLibC:= false; // true for headers that indirectly link to libc?
  24. // All dependencies (including implicit) are listed
  25. // here to be able to update all requirements to
  26. // compile fpmake from a single place
  27. D:=P.Dependencies.Add('hash');
  28. D.Version:='2.2.2-0';
  29. D:=P.Dependencies.Add('paszlib');
  30. D.Version:='2.2.2-0';
  31. D:=P.Dependencies.Add('fcl-process');
  32. D.Version:='2.2.2-0';
  33. P.Targets.AddUnit('src/fpmkunit.pp');
  34. {$ifndef ALLPACKAGES}
  35. Run;
  36. end;
  37. end.
  38. {$endif ALLPACKAGES}