/packages/utmp/fpmake.pp
https://github.com/slibre/freepascal · Puppet · 32 lines · 26 code · 6 blank · 0 comment · 0 complexity · a2bee509fde877f442d14551a0e54b7d MD5 · raw file
- {$ifndef ALLPACKAGES}
- {$mode objfpc}{$H+}
- program fpmake;
- uses fpmkunit;
- Var
- P : TPackage;
- T : TTarget;
- begin
- With Installer do
- begin
- {$endif ALLPACKAGES}
- P:=AddPackage('utmp');
- {$ifdef ALLPACKAGES}
- P.Directory:='utmp';
- {$endif ALLPACKAGES}
- P.Version:='2.7.1';
- P.SourcePath.Add('src');
- P.OSes := [beos,haiku,freebsd,darwin,iphonesim,solaris,netbsd,openbsd,linux];
- T:=P.Targets.AddUnit('utmp.pp');
- P.ExamplePath.Add('examples');
- P.Targets.AddExampleProgram('testutmp.pp');
- {$ifndef ALLPACKAGES}
- Run;
- end;
- end.
- {$endif ALLPACKAGES}