]> git.pld-linux.org Git - packages/perl-List-MoreUtils.git/blame - perl-List-MoreUtils.spec
- up to 0.33
[packages/perl-List-MoreUtils.git] / perl-List-MoreUtils.spec
CommitLineData
681cdd43
AG
1#
2# Conditional build:
c5c48ecd 3%bcond_without tests # do not perform "make test"
681cdd43
AG
4#
5%include /usr/lib/rpm/macros.perl
3deef84b 6%define pdir List
7%define pnam MoreUtils
681cdd43 8Summary: List::MoreUtils - provide the stuff missing in List::Util
c22cb832 9Summary(pl.UTF-8): List::MoreUtils - dostarczenie elementów brakujących w List::Util
681cdd43 10Name: perl-List-MoreUtils
cbed697a 11Version: 0.33
0ceff4ff 12Release: 1
681cdd43
AG
13# same as perl
14License: GPL v1+ or Artistic
15Group: Development/Languages/Perl
0ceff4ff 16Source0: http://www.cpan.org/modules/by-authors/id/A/AD/ADAMK/%{pdir}-%{pnam}-%{version}.tar.gz
cbed697a 17# Source0-md5: 8a33c84028cc2ff3e92c92434b326c0f
681cdd43
AG
18URL: http://search.cpan.org/dist/List-MoreUtils/
19BuildRequires: perl-devel >= 1:5.8.0
20BuildRequires: rpm-perlprov >= 4.1-13
21BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23%description
24List::MoreUtils provides some trivial but commonly needed
25functionality on lists which is not going to go into List::Util.
26
27All of the below functions are implementable in one line of Perl code.
28Using the functions from this module however should give slightly
29better performance as everything is implemented in C. The pure-Perl
30implementation of these functions only serves as a fallback in case
31the C portions of this module couldn't be compiled on this machine.
32
73092f16
JR
33%description -l pl.UTF-8
34List::MoreUtils dostarcza prostych, ale często potrzebnych funkcji do
35operacji na listach - elementy, które nie zostaną dołączone do
681cdd43
AG
36List::Util.
37
73092f16
JR
38Wszystkie z funkcji są możliwe do implementowania w jednej linijce
39kodu Perla. Używanie funkcji z tego modułu może jednak dać odrobinę
40większą wydajność jako, że całość została napisana w C. Implementacja
41napisana w Perlu służy w sytuacjach wyjątkowych w przypadkach, gdy
42elementy modułu napisane w C nie mogą zostać skompilowane na maszynie.
681cdd43
AG
43
44%prep
45%setup -q -n %{pdir}-%{pnam}-%{version}
46
47%build
48%{__perl} Makefile.PL \
49 INSTALLDIRS=vendor
50
51%{__make} \
40f24203 52 CC="%{__cc}" \
681cdd43
AG
53 OPTIMIZE="%{rpmcflags}"
54
55%{?with_tests:%{__make} test}
56
57%install
58rm -rf $RPM_BUILD_ROOT
59
60%{__make} install \
61 DESTDIR=$RPM_BUILD_ROOT
62
63%clean
64rm -rf $RPM_BUILD_ROOT
65
66%files
67%defattr(644,root,root,755)
68%doc Changes README
bc681e13 69%dir %{perl_vendorarch}/List
beab3ee4
JB
70%{perl_vendorarch}/List/MoreUtils.pm
71%dir %{perl_vendorarch}/auto/List/MoreUtils
72%{perl_vendorarch}/auto/List/MoreUtils/MoreUtils.bs
73%attr(755,root,root) %{perl_vendorarch}/auto/List/MoreUtils/MoreUtils.so
0ceff4ff 74%{_mandir}/man3/List::MoreUtils.3pm*
This page took 0.116671 seconds and 4 git commands to generate.