summaryrefslogtreecommitdiff
path: root/packages/fcl-sound/fpmake.pp
blob: 4baf21015ef4315223a09ce1ba1e5bc6208d1f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;

uses fpmkunit;

Var
  T : TTarget;
  P : TPackage;
begin
  With Installer do
    begin
{$endif ALLPACKAGES}

    P:=AddPackage('fcl-sound');
    P.ShortName:='fsnd';
{$ifdef ALLPACKAGES}
    P.Directory:=ADirectory;
{$endif ALLPACKAGES}
    P.Version:='3.2.0rc1';
    P.Dependencies.Add('fcl-base');

    P.Author := 'Abou Al Montacir of the Free Pascal development team';
    P.License := 'LGPL with modification, ';
    P.HomepageURL := 'www.freepascal.org';
    P.Email := '';
    P.Description := 'Sound loading, storing and conversion parts for the Free Component Libraries (FCL), FPC''s OOP library.';
    P.NeedLibC:= false;
    P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
    if Defaults.CPU=jvm then
      P.OSes := P.OSes - [java,android];

    P.SourcePath.Add('src');

    T:=P.Targets.AddUnit('fpwavformat.pas');
    T:=P.Targets.AddUnit('fpwavreader.pas');
      with T.Dependencies do
        begin
          AddUnit('fpwavformat');
        end;
    T:=P.Targets.AddUnit('fpwavwriter.pas');
      with T.Dependencies do
        begin
          AddUnit('fpwavformat');
        end;

{$ifndef ALLPACKAGES}
    Run;
    end;
end.
{$endif ALLPACKAGES}