]> git.pld-linux.org Git - packages/perl-Data-OptList.git/blob - perl-Data-OptList.spec
- updated to 0.114
[packages/perl-Data-OptList.git] / perl-Data-OptList.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # unit tests
4 #
5 %define pdir    Data
6 %define pnam    OptList
7 Summary:        Data::OptList - parse and validate simple name/value option pairs
8 Summary(pl.UTF-8):      Data::OptList - analiza i sprawdzanie poprawności prostych par opcji nazwa/wartość
9 Name:           perl-Data-OptList
10 Version:        0.114
11 Release:        1
12 # same as perl
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-module/Data/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  d63ec5d446eff1aaa5ba92bc13a52b77
17 URL:            https://metacpan.org/release/Data-OptList
18 BuildRequires:  perl-ExtUtils-MakeMaker >= 6.78
19 BuildRequires:  perl-devel >= 1:5.12.0
20 BuildRequires:  rpm-perlprov >= 4.1-13
21 BuildRequires:  rpmbuild(macros) >= 1.745
22 %if %{with tests}
23 BuildRequires:  perl-Params-Util >= 0.14
24 BuildRequires:  perl-Scalar-List-Utils
25 BuildRequires:  perl-Sub-Install >= 0.921
26 BuildRequires:  perl-Test-Simple >= 0.96
27 %endif
28 BuildArch:      noarch
29 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
30
31 %description
32 Data::OptList simplifies storing name/value pairs.
33
34 %description -l pl.UTF-8
35 Data::OptList upraszcza zapisywanie par nazwa/wartość.
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} 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 README
59 %{perl_vendorlib}/Data/OptList.pm
60 %{_mandir}/man3/Data::OptList.3pm*
This page took 0.14347 seconds and 4 git commands to generate.