File: Makefile.PL

package info (click to toggle)
libcrypt-dh-perl 0.06-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 136 kB
  • ctags: 100
  • sloc: perl: 1,173; makefile: 44
file content (20 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# $Id: Makefile.PL 1854 2005-06-07 00:54:36Z btrott $

use inc::Module::Install;

name('Crypt-DH');
abstract('Diffie-Hellman key exchange system');
author('Benjamin Trott <ben+cpan@stupidfool.org>');
version_from('lib/Crypt/DH.pm'),
license('perl');
no_index(directory => 't');
sign(1);

include('ExtUtils::AutoInstall');

requires('Math::BigInt' => '1.60');

auto_include();
auto_install();

&WriteAll;