]> git.pld-linux.org Git - packages/perl-Net-SSH-Perl.git/blame - perl-Net-SSH-Perl.spec
- converted to UTF-8
[packages/perl-Net-SSH-Perl.git] / perl-Net-SSH-Perl.spec
CommitLineData
ac0d4d46 1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
5%include /usr/lib/rpm/macros.perl
f5364129 6%define pdir Net
7%define pnam SSH-Perl
ac0d4d46 8Summary: Net::SSH::Perl - Perl client Interface to SSH
7893ce0a 9Summary(pl.UTF-8): Net::SSH::Perl - perlowy interfejs kliencki do SSH
ac0d4d46 10Name: perl-Net-SSH-Perl
df9d3d3e 11Version: 1.30
7a7e40dc 12Release: 0.1
ac0d4d46 13# same as perl
14License: GPL v1+ or Artistic
15Group: Development/Languages/Perl
16Source0: http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
df9d3d3e 17# Source0-md5: 063f3dc93a4fe6108b068b6d6097992d
e69968ab 18BuildRequires: perl-devel >= 1:5.8.0
ac0d4d46 19BuildRequires: rpm-perlprov >= 4.1-13
20%if %{with tests}
21# just taken from Makefile; probably not all are required for tests...
22BuildRequires: perl-Convert-PEM >= 0.05
446c8888 23BuildRequires: perl-Crypt-DH >= 0.01
24BuildRequires: perl-Crypt-DSA >= 0.11
ac0d4d46 25BuildRequires: perl-Digest-HMAC
26BuildRequires: perl-Digest-MD5
27BuildRequires: perl-Digest-SHA1
446c8888 28BuildRequires: perl-Math-GMP >= 1.04
ac0d4d46 29BuildRequires: perl-Math-Pari >= 2.001804
30BuildRequires: perl-MIME-Base64
31BuildRequires: perl-Scalar-List-Utils
32BuildRequires: perl-String-CRC32 >= 1.2
33%endif
4dcb086f 34Requires: perl-Crypt-RSA
ac0d4d46 35BuildArch: noarch
36BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
37
38%description
e69968ab
JB
39Net::SSH::Perl is an all-Perl module implementing an SSH (Secure
40Shell) client. It is compatible with both the SSH-1 and SSH-2
41protocols.
ac0d4d46 42
7893ce0a
JR
43%description -l pl.UTF-8
44Net::SSH::Perl to napisany w całości w Perlu moduł implementujący
45klienta SSH (Secure Shell). Jest kompatybilny z protokołami zarówno
e69968ab 46SSH-1 jak i SSH-2.
ac0d4d46 47
48%prep
49%setup -q -n %{pdir}-%{pnam}-%{version}
50
51%build
52%{__perl} -MExtUtils::MakeMaker -e 'WriteMakefile(NAME=>"Perl::Net::SSH::Perl")' \
53 INSTALLDIRS=vendor
54%{__make}
55
56%{?with_tests:%{__make} test}
57
58%install
59rm -rf $RPM_BUILD_ROOT
60
61%{__make} install \
62 DESTDIR=$RPM_BUILD_ROOT
63
64install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
65cp -a eg/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
66
67%clean
68rm -rf $RPM_BUILD_ROOT
69
70%files
71%defattr(644,root,root,755)
72%doc Changes ToDo
51d625d6 73%dir %{perl_vendorlib}/Net/SSH
ac0d4d46 74%{perl_vendorlib}/Net/SSH/*.pm
75%{perl_vendorlib}/Net/SSH/Perl
76%{_mandir}/man3/*
77%{_examplesdir}/%{name}-%{version}
This page took 0.040607 seconds and 4 git commands to generate.