fpmake.pp 782 B

12345678910111213141516171819202122232425262728293031323334353637
  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('dts');
  13. {$ifdef ALLPACKAGES}
  14. P.Directory:=ADirectory;
  15. {$endif ALLPACKAGES}
  16. P.Version:='2.7.1';
  17. P.Author := 'Library: Gildas Bazin, header: Ivo Steinmann';
  18. P.License := 'Library: GPL2 or later, header: LGPL with modification, ';
  19. P.HomepageURL := 'www.freepascal.org';
  20. P.Email := '';
  21. P.Description := 'a low-level interface to decoding audio frames encoded using DTS Coherent Acoustics';
  22. P.NeedLibC:= true;
  23. P.OSes := [linux];
  24. P.SourcePath.Add('src');
  25. T:=P.Targets.AddUnit('dts.pas');
  26. {$ifndef ALLPACKAGES}
  27. Run;
  28. end;
  29. end.
  30. {$endif ALLPACKAGES}