fpmake.pp 843 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {$ifndef ALLPACKAGES}
  2. {$mode objfpc}{$H+}
  3. program fpmake;
  4. uses {$ifdef unix}cthreads,{$endif} 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.HomepageURL := 'www.freepascal.org';
  16. P.Email := '';
  17. P.Description := 'A free library for decoding ATSC A/52 streams.';
  18. P.NeedLibC:= true;
  19. P.OSes := [linux,win32];
  20. {$ifdef ALLPACKAGES}
  21. P.Directory:=ADirectory;
  22. {$endif ALLPACKAGES}
  23. P.Version:='3.3.1';
  24. P.SourcePath.Add('src');
  25. T:=P.Targets.AddUnit('a52.pas');
  26. P.NamespaceMap:='namespaces.lst';
  27. {$ifndef ALLPACKAGES}
  28. Run;
  29. end;
  30. end.
  31. {$endif ALLPACKAGES}