]> git.pld-linux.org Git - packages/perl-Crypt-Random.git/blob - perl-Crypt-Random.spec
- updated to 1.23
[packages/perl-Crypt-Random.git] / perl-Crypt-Random.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define pdir    Crypt
7 %define pnam    Random
8 Summary:        Crypt::Random - cryptographically secure, true random number generator
9 Summary(pl):    Crypt::Random - bezpieczny kryptograficznie, prawdziwy generator liczb losowych
10 Name:           perl-Crypt-Random
11 Version:        1.23
12 Release:        1
13 # same as perl
14 License:        GPL v1+ or Artistic
15 Group:          Development/Languages/Perl
16 Source0:        http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  29d342b8cbe27674c235d4d55eef9d2d
18 Patch0:         %{name}-no_Class_Loader.patch
19 %if %{with tests}
20 BuildRequires:  perl-Math-Pari >= 2.001804
21 %endif
22 BuildRequires:  rpm-perlprov >= 4.1-13
23 BuildRequires:  perl-devel >= 1:5.8.0
24 BuildArch:      noarch
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 Crypt::Random is an interface module to the /dev/random device found
29 on most modern Unix systems. The /dev/random driver gathers
30 environmental noise from various non-deterministic sources including
31 inter-keyboard timings and inter-interrupt timings that occur within
32 the operating system environment.
33
34 %description -l pl
35 Modu³ Perla Crypt::Random stanowi interfejs do urz±dzenia /dev/random
36 znajduj±cego siê w wiêkszo¶ci wspó³czesnych systemów uniksowych.
37 Sterownik /dev/random gromadzi szum pochodz±cy z ró¿nych
38 niedeterministycznych ¼róde³, w³±czaj±c w to: przebiegi czasowe
39 klawiatury i przerwañ wystêpuj±ce w systemie operacyjnym.
40
41 %prep
42 %setup -q -n %{pdir}-%{pnam}-%{version}
43 %patch0 -p1
44
45 %build
46 %{__perl} Makefile.PL \
47         INSTALLDIRS=vendor
48 %{__make}
49
50 %{?with_tests:%{__make} test}
51
52 %install
53 rm -rf $RPM_BUILD_ROOT
54
55 %{__make} install \
56         DESTDIR=$RPM_BUILD_ROOT
57
58 %clean
59 rm -rf $RPM_BUILD_ROOT
60
61 %files
62 %defattr(644,root,root,755)
63 %doc Changes README
64 %attr(755,root,root) %{_bindir}/*
65 %{perl_vendorlib}/Crypt/Random.pm
66 %{perl_vendorlib}/Crypt/Random
67 #%%{perl_vendorlib}/Crypt/Random/Generator.pm
68 %{_mandir}/man3/*
This page took 0.083383 seconds and 4 git commands to generate.