]> git.pld-linux.org Git - packages/perl-Data-OptList.git/blob - perl-Data-OptList.spec
- updated to 0.110
[packages/perl-Data-OptList.git] / perl-Data-OptList.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define pdir    Data
7 %define pnam    OptList
8 Summary:        Data::OptList - parse and validate simple name/value option pairs
9 Summary(pl.UTF-8):      Data::OptList - analiza i sprawdzanie poprawności prostych par opcji nazwa/wartość
10 Name:           perl-Data-OptList
11 Version:        0.110
12 Release:        1
13 # same as perl
14 License:        GPL v1+ or Artistic
15 Group:          Development/Languages/Perl
16 Source0:        http://www.cpan.org/modules/by-module/Data/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  f9236c9ea5607134ad8a2b3dc901c4c5
18 URL:            http://search.cpan.org/dist/Data-OptList/
19 BuildRequires:  perl-ExtUtils-MakeMaker >= 6.30
20 BuildRequires:  perl-devel >= 1:5.8.0
21 BuildRequires:  rpm-perlprov >= 4.1-13
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.103331 seconds and 3 git commands to generate.