]> git.pld-linux.org Git - packages/perl-strictures.git/blob - perl-strictures.spec
79ffb6427c89114c3090c696b4e40154c6602662
[packages/perl-strictures.git] / perl-strictures.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %define         pdir    strictures
6 Summary:        Turn on strict and make all warnings fatal
7 Summary(pl.UTF-8):      Włączenie trybu ścisłego i uczynienie wszystkich ostrzeżeń krytycznymi
8 Name:           perl-strictures
9 Version:        2.000005
10 Release:        1
11 # same as perl
12 License:        GPL v1+ or Artistic
13 Group:          Development/Languages/Perl
14 Source0:        http://www.cpan.org/modules/by-authors/id/E/ET/ETHER/%{pdir}-%{version}.tar.gz
15 # Source0-md5:  30e19bf51cf27df447ac7f2702750f02
16 URL:            https://metacpan.org/release/strictures
17 %{?with_tests:BuildRequires:    perl-Test-Simple}
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 BuildArch:      noarch
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 Turn on strict and make all warnings fatal.
25
26 %description -l pl.UTF-8
27 Włączenie trybu ścisłego i uczynienie wszystkich ostrzeżeń
28 krytycznymi.
29
30 %prep
31 %setup -q -n %{pdir}-%{version}
32
33 %build
34 %{__perl} Makefile.PL \
35         INSTALLDIRS=vendor
36 %{__make}
37
38 %{?with_tests:%{__make} test}
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42
43 %{__make} pure_install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 %clean
47 rm -rf $RPM_BUILD_ROOT
48
49 %files
50 %defattr(644,root,root,755)
51 %doc Changes README
52 %{perl_vendorlib}/strictures.pm
53 %{perl_vendorlib}/strictures
54 %{_mandir}/man3/strictures.3pm*
55 %{_mandir}/man3/strictures::extra.3pm*
This page took 0.044632 seconds and 2 git commands to generate.