]> git.pld-linux.org Git - packages/perl-File-Slurp-Tiny.git/blob - perl-File-Slurp-Tiny.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-File-Slurp-Tiny.git] / perl-File-Slurp-Tiny.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %define         pdir    File
6 %define         pnam    Slurp-Tiny
7 Summary:        File::Slurp::Tiny - A simple, sane and efficient file slurper [DISCOURAGED]
8 Summary(pl.UTF-8):      File::Slurp::Tiny - prosty, rozsądny i wydajny moduł do wciągania plików [ODRADZANY]
9 Name:           perl-File-Slurp-Tiny
10 Version:        0.004
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/File/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  7575b81543281ea57cdb7e5eb3f73264
17 URL:            http://search.cpan.org/dist/File-Slurp-Tiny/
18 BuildRequires:  perl-devel >= 1:5.8.1
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 %if %{with tests}
21 %endif
22 BuildArch:      noarch
23 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25 %description
26 This module provides functions for fast and correct slurping and
27 spewing. All functions are optionally exported.
28
29 Note: this module is discouraged in favour of File::Slurper.
30
31 %description -l pl.UTF-8
32 Ten moduł udostępnia funkcje do szybkiego i poprawnego wciągania i
33 wypluwania. Wszystkie funkcje są eksportowane opcjonalnie.
34
35 Uwaga: ten moduł jest odradzany na rzecz modułu File::Slurper.
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} pure_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 %dir %{perl_vendorlib}/File/Slurp
60 %{perl_vendorlib}/File/Slurp/Tiny.pm
61 %{_mandir}/man3/File::Slurp::Tiny.3pm*
This page took 0.076399 seconds and 4 git commands to generate.