123456789101112131415161718192021222324252627282930313233343536 |
- {$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.1.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];
- P.SourcePath.Add('src');
- T:=P.Targets.AddUnit('libtar.pp');
- {$ifndef ALLPACKAGES}
- Run;
- end;
- end.
- {$endif ALLPACKAGES}
|