summaryrefslogtreecommitdiff
path: root/packages/hash
diff options
context:
space:
mode:
authormarco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-10-26 20:18:05 +0000
committermarco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-10-26 20:18:05 +0000
commit21bd60bcc9c92834b54dfeefb86673d7bed62938 (patch)
treef15269dce2cf0a1545df725a18aaf2a4f1c1587a /packages/hash
parentb09864d446b1b6290cacc9065557bb10df9675cd (diff)
downloadfpc-21bd60bcc9c92834b54dfeefb86673d7bed62938.tar.gz
* Another batch of manifests added to the respective fpmakes. Until httpd22.
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@11975 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/hash')
-rw-r--r--packages/hash/fpmake.pp10
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/hash/fpmake.pp b/packages/hash/fpmake.pp
index 4154b3c7a9..2a5bb66b7b 100644
--- a/packages/hash/fpmake.pp
+++ b/packages/hash/fpmake.pp
@@ -11,11 +11,19 @@ begin
With Installer do
begin
{$endif ALLPACKAGES}
-
P:=AddPackage('hash');
+
{$ifdef ALLPACKAGES}
P.Directory:='hash';
{$endif ALLPACKAGES}
+
+ P.Author := 'Free Pascal development team, Mark Adler, Jacques Nomssi Nzali';
+ P.License := 'LGPL with modification, ';
+ P.ExternalURL := 'www.freepascal.org';
+ P.Email := '';
+ P.Description := 'Several hash algorithms (MD5,CRC,Linux crypt and NTLM1).';
+ P.NeedLibC:= false;
+
P.Version:='2.2.2-0';
T:=P.Targets.AddUnit('src/md5.pp');
T:=P.Targets.AddUnit('src/crc.pas');