fpmake.pp 705 B

1234567891011121314151617181920212223242526272829303132333435
  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('bfd');
  13. {$ifdef ALLPACKAGES}
  14. P.Directory:='bfd';
  15. {$endif ALLPACKAGES}
  16. P.Version:='2.2.2-0';
  17. P.Author := 'Library: Cygnus Support, header: by Uli Tessel';
  18. P.License := 'Library: GPL2 or later, header: LGPL with modification, ';
  19. P.HomepageURL := 'www.freepascal.org';
  20. P.Email := '';
  21. P.Description := 'Binary File Descriptor library.';
  22. P.NeedLibC:= true;
  23. P.SourcePath.Add('src');
  24. T:=P.Targets.AddUnit('bfd.pas');
  25. {$ifndef ALLPACKAGES}
  26. Run;
  27. end;
  28. end.
  29. {$endif ALLPACKAGES}