fpmake.pp 553 B

12345678910111213141516171819202122232425262728293031323334
  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('modplug');
  13. P.ShortName := 'mplg';
  14. {$ifdef ALLPACKAGES}
  15. P.Directory:=ADirectory;
  16. {$endif ALLPACKAGES}
  17. P.Version:='3.3.1';
  18. P.OSes := [linux];
  19. P.SourcePath.Add('src');
  20. T:=P.Targets.AddUnit('modplug.pas');
  21. P.NamespaceMap:='namespaces.lst';
  22. {$ifndef ALLPACKAGES}
  23. Run;
  24. end;
  25. end.
  26. {$endif ALLPACKAGES}