]> git.pld-linux.org Git - packages/perl-Crypt-Skipjack.git/blame - perl-Crypt-Skipjack.spec
rebuild with perl 5.34.0
[packages/perl-Crypt-Skipjack.git] / perl-Crypt-Skipjack.spec
CommitLineData
b8f9f418
JB
1#
2# Conditional build:
15707ae0 3%bcond_without tests # Do not perform "make test"
b8f9f418 4#
c20172f1 5%define pdir Crypt
6%define pnam Skipjack
b8f9f418 7Summary: Crypt::Skipjack - Crypt::CBC-compliant block cipher
25ee4a39 8Summary(pl.UTF-8): Crypt::Skipjack - szyfr blokowy kompatybilny z Crypt::CBC
b8f9f418 9Name: perl-Crypt-Skipjack
c44d32a9 10Version: 1.0.2
b07b7751 11Release: 16
fde38a90 12License: GPL v2
b8f9f418 13Group: Development/Languages/Perl
fde38a90 14Source0: http://www.cpan.org/modules/by-module/Crypt/%{pdir}-%{pnam}-%{version}.tar.gz
c44d32a9 15# Source0-md5: 46196172e7020917f8249f36f8b55c21
fde38a90 16URL: http://search.cpan.org/dist/Crypt-Skipjack/
ef6263dd 17BuildRequires: perl-devel >= 1:5.8.0
b8f9f418
JB
18BuildRequires: rpm-perlprov >= 4.1-13
19BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21%description
22Skipjack is the secret key encryption algorithm designed by the
23National Security Agency, and is used in the Clipper chip and Fortezza
24PC card. It was implemented in tamper-resistant hardware and its
25structure had been classified since its introduction in 1993. Skipjack
26was unclassified on June 24, 1998. Skipjack is an 80-bit key, 64-bit
27block cipher. This module supports the Crypt::CBC interface.
28
77de8f8d 29%description -l pl.UTF-8
b8f9f418 30Skipjack to algorytm szyfrowania klucza tajnego opracowany przez NSA
77de8f8d
JR
31(National Security Agency), używany w układzie Clipper i kartach PC
32Fortezza. Był zaimplementowany w zabezpieczonym przed intruzami
33sprzęcie, a jego struktura była zastrzeżona od wprowadzenia w 1993
b8f9f418 34roku do 24 czerwca 1998. Skipjack to 64-bitowy szyfr blokowy z
77de8f8d 3580-bitowym kluczem. Ten moduł obsługuje interfejs Crypt::CBC.
b8f9f418
JB
36
37%prep
38%setup -q -n %{pdir}-%{pnam}-%{version}
39
40%build
41%{__perl} Makefile.PL \
42 INSTALLDIRS=vendor
b662a964 43%{__make} \
f2e25d0f 44 CC="%{__cc}" \
b662a964 45 OPTIMIZE="%{rpmcflags}"
b8f9f418 46
15707ae0 47%{?with_tests:%{__make} test}
b8f9f418
JB
48
49%install
50rm -rf $RPM_BUILD_ROOT
51
52%{__make} install \
53 DESTDIR=$RPM_BUILD_ROOT
b8f9f418
JB
54cd examples
55install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
56for f in * ; do
57 sed -e "s@#!/usr/local/bin/perl@#!/usr/bin/perl@" $f \
58 > $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}/$f
59done
60
61%clean
62rm -rf $RPM_BUILD_ROOT
63
64%files
65%defattr(644,root,root,755)
66%doc Changes README
67%{perl_vendorarch}/Crypt/Skipjack.pm
68%dir %{perl_vendorarch}/auto/Crypt/Skipjack
b8f9f418
JB
69%attr(755,root,root) %{perl_vendorarch}/auto/Crypt/Skipjack/Skipjack.so
70%{_mandir}/man3/*
71%attr(755,root,root) %{_examplesdir}/%{name}-%{version}
This page took 0.64018 seconds and 4 git commands to generate.