mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-21 13:50:01 +02:00
* add fpmake to cairo package
git-svn-id: trunk@9831 -
This commit is contained in:
parent
c515c7f8ea
commit
867610beaa
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -1588,6 +1588,8 @@ packages/extra/bzip2/pasbzip.pas svneol=native#text/plain
|
||||
packages/extra/cairo/Makefile svneol=native#text/plain
|
||||
packages/extra/cairo/Makefile.fpc svneol=native#text/plain
|
||||
packages/extra/cairo/cairo.pp svneol=native#text/plain
|
||||
packages/extra/cairo/fpmake.inc svneol=native#text/plain
|
||||
packages/extra/cairo/fpmake.pp svneol=native#text/plain
|
||||
packages/extra/cdrom/Makefile svneol=native#text/plain
|
||||
packages/extra/cdrom/Makefile.fpc svneol=native#text/plain
|
||||
packages/extra/cdrom/README -text
|
||||
|
9
packages/extra/cairo/fpmake.inc
Normal file
9
packages/extra/cairo/fpmake.inc
Normal file
@ -0,0 +1,9 @@
|
||||
StartPackage('cairo');
|
||||
{$IF defined(ALLPACKAGES)}
|
||||
Directory:='extra/cairo';
|
||||
{$ELSEIF defined(EXTRAPACKAGES)}
|
||||
Directory:='cairo';
|
||||
{$ENDIF}
|
||||
OS:=[linux, freebsd, netbsd, openbsd, darwin, solaris];
|
||||
T:=Targets.AddUnit('cairo');
|
||||
EndPackage;
|
17
packages/extra/cairo/fpmake.pp
Normal file
17
packages/extra/cairo/fpmake.pp
Normal file
@ -0,0 +1,17 @@
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
|
||||
Var
|
||||
T : TTarget;
|
||||
|
||||
begin
|
||||
With Installer do
|
||||
begin
|
||||
{ Base packages }
|
||||
{$i fpmake.inc}
|
||||
Run;
|
||||
end;
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user