]> git.pld-linux.org Git - packages/perlindex.git/blob - perlindex.spec
93d033d05174a25a83b69e7b73e6835be673d065
[packages/perlindex.git] / perlindex.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    Text
7 %define         pnam    perlindex
8 Summary:        perlindex - a program to index and search the Perl documentation
9 Summary(pl.UTF-8):      perlindex - program do indeksowania i przeszukiwania dokumentacji Perla
10 Name:           perlindex
11 Version:        1.605
12 Release:        1
13 License:        GPL
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-module/Text/%{pnam}-%{version}.tar.gz
16 # Source0-md5:  cb8e17296c0369ceb4e71a684c49c14d
17 URL:            http://search.cpan.org/dist/perlindex/
18 BuildRequires:  perl-Term-ReadKey
19 BuildRequires:  perl-devel >= 1:5.8.0
20 BuildRequires:  rpm-perlprov >= 4.1-13
21 BuildArch:      noarch
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 perlindex - a program to index and search the Perl documentation.
26
27 %description -l pl.UTF-8
28 perlindex - program do indeksowania i przeszukiwania dokumentacji
29 Perla.
30
31 %prep
32 %setup -q -n %{pnam}-%{version}
33
34 %build
35 %{__perl} Makefile.PL \
36         INSTALLDIRS=vendor
37 %{__make}
38
39 %{?with_tests:%{__make} test}
40
41 %install
42 rm -rf $RPM_BUILD_ROOT
43
44 %{__make} install \
45         DESTDIR=$RPM_BUILD_ROOT
46
47 %clean
48 rm -rf $RPM_BUILD_ROOT
49
50 %files
51 %defattr(644,root,root,755)
52 %doc ChangeLog README
53 %attr(755,root,root) %{_bindir}/*
54 %{perl_vendorlib}/Text/English.pm
55 %{_mandir}/man*/*
This page took 0.027189 seconds and 2 git commands to generate.