]> git.pld-linux.org Git - packages/perl-Apache-Htpasswd.git/blob - perl-Apache-Htpasswd.spec
490444255a7f21a68059f868131e93527b015e84
[packages/perl-Apache-Htpasswd.git] / perl-Apache-Htpasswd.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    Apache
7 %define         pnam    Htpasswd
8 Summary:        Manage Unix crypt-style password file
9 Summary(pl.UTF-8):      Obsługa pliku haseł w stylu uniksowego crypt
10 Name:           perl-Apache-Htpasswd
11 Version:        1.9
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/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  ee2ca41f9dd92d7a830a5ba65fcbeef0
18 URL:            http://search.cpan.org/dist/Apache-Htpasswd/
19 BuildRequires:  perl-devel >= 1:5.8.0
20 BuildRequires:  rpm-perlprov >= 4.1-13
21 %if %{with tests}
22 BuildRequires:  perl-Crypt-PasswdMD5
23 BuildRequires:  perl-Digest-SHA1
24 %endif
25 BuildArch:      noarch
26 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28 %description
29 This module comes with a set of methods to use with htaccess password
30 files. These files (and htaccess) are used to do Basic Authentication
31 on a web server.
32
33 %description -l pl.UTF-8
34 Ten moduł dostarcza zestaw metod, których można używać z plikami haseł
35 htaccess. Te pliki (oraz htaccess) są używane do uwierzytelnienia
36 Basic na serwerze WWW.
37
38 %prep
39 %setup -q -n %{pdir}-%{pnam}-%{version}
40
41 %build
42 %{__perl} Makefile.PL \
43         INSTALLDIRS=vendor
44 %{__make}
45
46 %{?with_tests:%{__make} test}
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50
51 %{__make} install \
52         DESTDIR=$RPM_BUILD_ROOT
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %files
58 %defattr(644,root,root,755)
59 %doc README
60 %{perl_vendorlib}/%{pdir}/*.pm
61 %{_mandir}/man3/*
This page took 0.043058 seconds and 2 git commands to generate.