~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/packages/libcurl/fpmake.pp

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{$ifndef ALLPACKAGES}
 
2
{$mode objfpc}{$H+}
 
3
program fpmake;
 
4
 
 
5
uses fpmkunit;
 
6
 
 
7
Var
 
8
  P : TPackage;
 
9
  T : TTarget;
 
10
begin
 
11
  With Installer do
 
12
    begin
 
13
{$endif ALLPACKAGES}
 
14
 
 
15
    P:=AddPackage('libcurl');
 
16
{$ifdef ALLPACKAGES}
 
17
    P.Directory:='libcurl';
 
18
{$endif ALLPACKAGES}
 
19
    P.Version:='2.0.0';
 
20
    P.SourcePath.Add('src');
 
21
 
 
22
    T:=P.Targets.AddUnit('libcurl.pp');
 
23
 
 
24
{$ifndef ALLPACKAGES}
 
25
    Run;
 
26
    end;
 
27
end.
 
28
{$endif ALLPACKAGES}