* add fpmake to cairo package

git-svn-id: trunk@9831 -
This commit is contained in:
Almindor 2008-01-20 22:07:06 +00:00
parent c515c7f8ea
commit 867610beaa
3 changed files with 28 additions and 0 deletions

2
.gitattributes vendored
View File

@ -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

View 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;

View 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.