fpmake.pp 740 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('a52');
  13. P.Author := 'Library: Michel Lespinasse and Aaron Holtzman, header: Ivo Steimann';
  14. P.License := 'Library: GPL2 or later, header: LGPL with modification';
  15. P.ExternalURL := 'www.freepascal.org';
  16. P.Email := '';
  17. P.Description := 'A free library for decoding ATSC A/52 streams.';
  18. P.NeedLibC:= true;
  19. {$ifdef ALLPACKAGES}
  20. P.Directory:='a52';
  21. {$endif ALLPACKAGES}
  22. P.Version:='2.2.2-0';
  23. P.SourcePath.Add('src');
  24. T:=P.Targets.AddUnit('a52.pas');
  25. {$ifndef ALLPACKAGES}
  26. Run;
  27. end;
  28. end.
  29. {$endif ALLPACKAGES}