12345678910111213141516171819202122232425262728293031 |
- {$ifndef ALLPACKAGES}
- {$mode objfpc}{$H+}
- program fpmake;
- uses fpmkunit;
- Var
- P : TPackage;
- T : TTarget;
- begin
- With Installer do
- begin
- {$endif ALLPACKAGES}
- P:=AddPackage('unixutil');
- P.ShortName := 'unix';
- {$ifdef ALLPACKAGES}
- P.Directory:=ADirectory;
- {$endif ALLPACKAGES}
- P.Version:='3.2.4-rc1';
- P.OSes:=[Linux];
- P.CPUs:=[i386];
- P.Dependencies.add('libc');
- P.SourcePath.Add('src');
- T:=P.Targets.AddUnit('unixutils.pp');
- {$ifndef ALLPACKAGES}
- Run;
- end;
- end.
- {$endif ALLPACKAGES}
|