fpmake.pp 858 B

1234567891011121314151617181920212223242526272829303132333435363738
  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('ptckvm');
  13. {$ifdef ALLPACKAGES}
  14. P.Directory:=ADirectory;
  15. {$endif ALLPACKAGES}
  16. P.Version:='3.3.1';
  17. P.Author := 'Nikolay Nikolov';
  18. P.License := 'LGPL with modification, ';
  19. P.HomepageURL := 'https://sourceforge.net/projects/fpterm/';
  20. P.Description := 'Driver for the video, keyboard and mouse units, built on top of the PTCPas graphics library.';
  21. p.OSes:=[linux,win32,win64,go32v2,macosx,openbsd,freebsd];
  22. P.SourcePath.Add('src');
  23. P.Dependencies.Add('ptc');
  24. p.Dependencies.Add('rtl-console');
  25. T:=P.Targets.AddUnit('ptckvm.pas');
  26. {$ifndef ALLPACKAGES}
  27. Run;
  28. end;
  29. end.
  30. {$endif ALLPACKAGES}