]> git.pld-linux.org Git - SPECS.git/blob - perl-Math-Base85.spec
SPECS updated Sat 31 Jul 20:26:02 CEST 2021
[SPECS.git] / perl-Math-Base85.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4
5 %define         pdir    Math
6 %define         pnam    Base85
7 Summary:        Math::Base85 Perl module for base 85 numbers, as referenced by RFC 1924
8 Summary(pl.UTF-8):      Moduł Perla Math::Base85 do liczb o podstawie 85, opisanych w RFC 1924
9 Name:           perl-Math-Base85
10 Version:        0.2
11 Release:        3
12 # same as perl
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  3a2914651dc680fd22661f35213211d3
17 URL:            http://search.cpan.org/dist/Math-Base85/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 BuildArch:      noarch
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 RFC 1924 (1 April 1996) describes a compact, fixed-size representation
25 of IPv6 addresses which uses a base 85 number system. This module
26 handles some of the uglier details of it.
27
28 %description -l pl.UTF-8
29 RFC 1924 (z 1 kwietnia 1996) opisuje zwartą, o stałym rozmiarze
30 reprezentację adresów IPv6, używającą systemu o podstawie 85. Ten
31 moduł obsługuje parę brzydszych szczegółów tej reprezentacji.
32
33 %prep
34 %setup -q -n %{pdir}-%{pnam}-%{version}
35
36 %build
37 %{__perl} Makefile.PL \
38         INSTALLDIRS=vendor
39 %{__make}
40
41 %{?with_tests:%{__make} test}
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45
46 %{__make} install \
47         DESTDIR=$RPM_BUILD_ROOT
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %files
53 %defattr(644,root,root,755)
54 %doc Changes README
55 %{perl_vendorlib}/Math/Base85.pm
56 %{_mandir}/man3/*
This page took 0.114732 seconds and 3 git commands to generate.