]> git.pld-linux.org Git - packages/perl-Apache-Htpasswd.git/blob - perl-Apache-Htpasswd.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-Apache-Htpasswd.git] / perl-Apache-Htpasswd.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4 #
5 %define         pdir    Apache
6 %define         pnam    Htpasswd
7 Summary:        Manage Unix crypt-style password file
8 Summary(pl.UTF-8):      Obsługa pliku haseł w stylu uniksowego crypt
9 Name:           perl-Apache-Htpasswd
10 Version:        1.9
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/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  ee2ca41f9dd92d7a830a5ba65fcbeef0
17 URL:            http://search.cpan.org/dist/Apache-Htpasswd/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 %if %{with tests}
21 BuildRequires:  perl-Crypt-PasswdMD5
22 BuildRequires:  perl-Digest-SHA1
23 %endif
24 BuildArch:      noarch
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 This module comes with a set of methods to use with htaccess password
29 files. These files (and htaccess) are used to do Basic Authentication
30 on a web server.
31
32 %description -l pl.UTF-8
33 Ten moduł dostarcza zestaw metod, których można używać z plikami haseł
34 htaccess. Te pliki (oraz htaccess) są używane do uwierzytelnienia
35 Basic na serwerze WWW.
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 README
59 %{perl_vendorlib}/%{pdir}/*.pm
60 %{_mandir}/man3/*
This page took 0.09114 seconds and 4 git commands to generate.