]> git.pld-linux.org Git - SPECS.git/blob - perl-List-SomeUtils.spec
SPECS updated Tue 30 Apr 15:13:02 CEST 2024
[SPECS.git] / perl-List-SomeUtils.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %define         pdir    List
6 %define         pnam    SomeUtils
7 Summary:        List::SomeUtils - Provide the stuff missing in List::Util
8 Summary(pl.UTF-8):      List::SomeUtils - funkcje brakujące w List::Util
9 Name:           perl-List-SomeUtils
10 Version:        0.58
11 Release:        1
12 # same as perl 5
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-module/List/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  d35e2233abcd8712792e6a3548f41181
17 URL:            http://search.cpan.org/dist/List-SomeUtils/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 %if %{with tests}
21 BuildRequires:  perl-Module-Implementation
22 BuildRequires:  perl-Test-LeakTrace
23 BuildRequires:  perl-Test-Simple >= 0.96
24 %endif
25 BuildArch:      noarch
26 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28 %description
29 List::SomeUtils provides some trivial but commonly needed
30 functionality on lists which is not going to go into List::Util.
31
32 %description -l pl.UTF-8
33 Moduł List::SomeUtils dostarcza kilka trywialnych, ale często
34 potrzebnych funkcji operujących na listach, a nie dodawanych do
35 List::Util.
36
37 %prep
38 %setup -q -n %{pdir}-%{pnam}-%{version}
39
40 %build
41 %{__perl} Makefile.PL \
42         INSTALLDIRS=vendor
43 %{__make}
44
45 %{?with_tests:%{__make} test}
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49
50 %{__make} pure_install \
51         DESTDIR=$RPM_BUILD_ROOT
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc Changes
59 %{perl_vendorlib}/List/SomeUtils.pm
60 %{perl_vendorlib}/List/SomeUtils
61 %{_mandir}/man3/List::SomeUtils*.3pm*
This page took 0.445957 seconds and 3 git commands to generate.