* added fpmake.pp for librsvg package

git-svn-id: trunk@12565 -
This commit is contained in:
ivost 2009-01-18 17:38:46 +00:00
parent aae8d6e15c
commit b136b85cb4
2 changed files with 38 additions and 0 deletions

1
.gitattributes vendored
View File

@ -3268,6 +3268,7 @@ packages/libpng/fpmake.pp svneol=native#text/plain
packages/libpng/src/png.pp svneol=native#text/plain
packages/librsvg/Makefile svneol=native#text/plain
packages/librsvg/Makefile.fpc svneol=native#text/plain
packages/librsvg/fpmake.pp svneol=native#text/plain
packages/librsvg/src/rsvg.pas svneol=native#text/plain
packages/libxml/Makefile svneol=native#text/plain
packages/libxml/Makefile.fpc svneol=native#text/plain

View File

@ -0,0 +1,37 @@
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses fpmkunit;
Var
P : TPackage;
T : TTarget;
begin
With Installer do
begin
{$endif ALLPACKAGES}
P:=AddPackage('rsvg');
{$ifdef ALLPACKAGES}
P.Directory:='librsvg';
{$endif ALLPACKAGES}
P.Version:='2.2.2-0';
P.SourcePath.Add('src');
P.IncludePath.Add('src');
T:=P.Targets.AddUnit('rsvg.pas');
with T.Dependencies do
begin
end;
// 'Makefile
// 'Makefile.fpc
// 'test1.xml
// 'test2.xml
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}