fpmake.pp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. with P.Targets.AddUnit('src/fpmkunit.pp') do
  34. ResourceStrings:=true;
  35. {$ifndef ALLPACKAGES}
  36. Run;
  37. end;
  38. end.
  39. {$endif ALLPACKAGES}