Browse Source

* forgot to add fpmake.pp in previous commit

Nikolay Nikolov 9 months ago
parent
commit
bb684c0bb3
1 changed files with 38 additions and 0 deletions
  1. 38 0
      packages/fcl-fpterm/fpmake.pp

+ 38 - 0
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}