* matroska moved

git-svn-id: trunk@9982 -
This commit is contained in:
marco 2008-01-26 21:58:23 +00:00
parent bdfdca006f
commit 853f5a84d9
5 changed files with 2287 additions and 3 deletions

6
.gitattributes vendored
View File

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

File diff suppressed because it is too large Load Diff

View File

@ -15,7 +15,11 @@ units=matroska
fpcpackage=y
[default]
fpcdir=../../..
fpcdir=../..
[compiler]
includedir=src
sourcedir=src tests
[rules]
.NOTPARALLEL:

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