mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 12:58:11 +02:00
* added fpmake.pp for librsvg package
git-svn-id: trunk@12565 -
This commit is contained in:
parent
aae8d6e15c
commit
b136b85cb4
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
37
packages/librsvg/fpmake.pp
Normal file
37
packages/librsvg/fpmake.pp
Normal 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}
|
Loading…
Reference in New Issue
Block a user