1234567891011121314151617181920212223242526272829303132333435363738 |
- {$ifndef ALLPACKAGES}
- {$mode objfpc}{$H+}
- program fpmake;
- uses fpmkunit;
- Var
- P : TPackage;
- T : TTarget;
- begin
- With Installer do
- begin
- {$endif ALLPACKAGES}
- P:=AddPackage('libtar');
- P.ShortName:='ltar';
- {$ifdef ALLPACKAGES}
- P.Directory:=ADirectory;
- {$endif ALLPACKAGES}
- P.Version:='3.3.1';
- P.Author := 'Stefan Heymann';
- P.License := 'LGPL with modification, ';
- P.HomepageURL := 'http://www.destructor.de/';
- P.Description := 'Library for handling tar-files.';
- P.OSes:=AllOSes-[embedded,win16,macos,palmos];
- if Defaults.CPU=jvm then
- P.OSes := P.OSes - [java,android];
- P.SourcePath.Add('src');
- T:=P.Targets.AddUnit('libtar.pp');
- {$ifndef ALLPACKAGES}
- Run;
- end;
- end.
- {$endif ALLPACKAGES}
|