fpmake.pp 672 B

123456789101112131415161718192021222324252627282930313233343536
  1. {$ifndef ALLPACKAGES}
  2. {$mode objfpc}{$H+}
  3. program fpmake;
  4. uses fpmkunit;
  5. Var
  6. P : TPackage;
  7. T : TTarget;
  8. begin
  9. With Installer do
  10. begin
  11. {$endif ALLPACKAGES}
  12. P:=AddPackage('libtar');
  13. P.ShortName:='ltar';
  14. {$ifdef ALLPACKAGES}
  15. P.Directory:=ADirectory;
  16. {$endif ALLPACKAGES}
  17. P.Version:='3.1.1';
  18. P.Author := 'Stefan Heymann';
  19. P.License := 'LGPL with modification, ';
  20. P.HomepageURL := 'http://www.destructor.de/';
  21. P.Description := 'Library for handling tar-files.';
  22. P.OSes:=AllOSes-[embedded];
  23. P.SourcePath.Add('src');
  24. T:=P.Targets.AddUnit('libtar.pp');
  25. {$ifndef ALLPACKAGES}
  26. Run;
  27. end;
  28. end.
  29. {$endif ALLPACKAGES}