diff --git a/packages/fcl-fpterm/fpmake.pp b/packages/fcl-fpterm/fpmake.pp new file mode 100644 index 0000000000..a4486c9db3 --- /dev/null +++ b/packages/fcl-fpterm/fpmake.pp @@ -0,0 +1,38 @@ +{$ifndef ALLPACKAGES} +{$mode objfpc}{$H+} +program fpmake; + +uses {$ifdef unix}cthreads,{$endif} fpmkunit; + +Var + P : TPackage; + T : TTarget; +begin + With Installer do + begin +{$endif ALLPACKAGES} + + P:=AddPackage('fcl-fpterm'); +{$ifdef ALLPACKAGES} + P.Directory:=ADirectory; +{$endif ALLPACKAGES} + P.Version:='3.3.1'; + + P.Author := 'Nikolay Nikolov'; + P.License := 'LGPL with modification, '; + P.HomepageURL := 'https://sourceforge.net/projects/fpterm/'; + P.Description := 'Terminal emulator library, written in Free Pascal.'; + P.OSes := P.OSes - [embedded,nativent,msdos,win16,macosclassic,palmos,zxspectrum,msxdos,amstradcpc,sinclairql,ps1]; +// p.OSes:=[linux,win32,win64,go32v2,macosx,openbsd,freebsd]; + + P.SourcePath.Add('src'); + + T:=P.Targets.AddUnit('system.terminal.base.pas'); + + //P.NamespaceMap:='namespaces.lst'; + +{$ifndef ALLPACKAGES} + Run; + end; +end. +{$endif ALLPACKAGES}