mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 03:19:33 +02:00
* matroska moved
git-svn-id: trunk@9982 -
This commit is contained in:
parent
bdfdca006f
commit
853f5a84d9
6
.gitattributes
vendored
6
.gitattributes
vendored
@ -2184,8 +2184,6 @@ packages/extra/lua/lauxlib.pas svneol=native#text/plain
|
||||
packages/extra/lua/lua.pas svneol=native#text/plain
|
||||
packages/extra/lua/lualib.pas svneol=native#text/plain
|
||||
packages/extra/matroska/Makefile svneol=native#text/plain
|
||||
packages/extra/matroska/Makefile.fpc svneol=native#text/plain
|
||||
packages/extra/matroska/matroska.pas svneol=native#text/plain
|
||||
packages/extra/newt/Makefile svneol=native#text/plain
|
||||
packages/extra/newt/Makefile.fpc svneol=native#text/plain
|
||||
packages/extra/newt/README -text
|
||||
@ -4240,6 +4238,10 @@ packages/mad/Makefile svneol=native#text/plain
|
||||
packages/mad/Makefile.fpc svneol=native#text/plain
|
||||
packages/mad/fpmake.pp svneol=native#text/plain
|
||||
packages/mad/src/mad.pas svneol=native#text/plain
|
||||
packages/matroska/Makefile svneol=native#text/plain
|
||||
packages/matroska/Makefile.fpc svneol=native#text/plain
|
||||
packages/matroska/fpmake.pp svneol=native#text/plain
|
||||
packages/matroska/src/matroska.pas svneol=native#text/plain
|
||||
packages/modplug/Makefile svneol=native#text/plain
|
||||
packages/modplug/Makefile.fpc svneol=native#text/plain
|
||||
packages/modplug/fpmake.pp svneol=native#text/plain
|
||||
|
2249
packages/matroska/Makefile
Normal file
2249
packages/matroska/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
@ -15,7 +15,11 @@ units=matroska
|
||||
fpcpackage=y
|
||||
|
||||
[default]
|
||||
fpcdir=../../..
|
||||
fpcdir=../..
|
||||
|
||||
[compiler]
|
||||
includedir=src
|
||||
sourcedir=src tests
|
||||
|
||||
[rules]
|
||||
.NOTPARALLEL:
|
29
packages/matroska/fpmake.pp
Normal file
29
packages/matroska/fpmake.pp
Normal file
@ -0,0 +1,29 @@
|
||||
{$ifndef ALLPACKAGES}
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
|
||||
Var
|
||||
P : TPackage;
|
||||
T : TTarget;
|
||||
begin
|
||||
With Installer do
|
||||
begin
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P:=AddPackage('matroska');
|
||||
{$ifdef ALLPACKAGES}
|
||||
P.Directory:='matroska';
|
||||
{$endif ALLPACKAGES}
|
||||
P.Version:='2.0.0';
|
||||
P.SourcePath.Add('src');
|
||||
|
||||
T:=P.Targets.AddUnit('matroska.pas');
|
||||
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
Run;
|
||||
end;
|
||||
end.
|
||||
{$endif ALLPACKAGES}
|
Loading…
Reference in New Issue
Block a user