]> git.pld-linux.org Git - packages/perl-Mixin-Linewise.git/blame - perl-Mixin-Linewise.spec
- up to 0.108
[packages/perl-Mixin-Linewise.git] / perl-Mixin-Linewise.spec
CommitLineData
cd11dbaa
JR
1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
5%define pdir Mixin
6%define pnam Linewise
7%include /usr/lib/rpm/macros.perl
8Summary: Mixin::Linewise - write your linewise code for handles; this does the rest
9#Summary(pl.UTF-8):
10Name: perl-Mixin-Linewise
da8bc7e4 11Version: 0.108
cd11dbaa
JR
12Release: 1
13# same as perl
14License: GPL v1+ or Artistic
15Group: Development/Languages/Perl
da8bc7e4
AM
16Source0: http://www.cpan.org/modules/by-authors/id/R/RJ/RJBS/Mixin-Linewise-%{version}.tar.gz
17# Source0-md5: c0f62761c6ce2ae6dc3e54153d042009
cd11dbaa
JR
18URL: http://search.cpan.org/dist/Mixin-Linewise/
19BuildRequires: perl-devel >= 1:5.8.0
20BuildRequires: rpm-perlprov >= 4.1-13
21%if %{with tests}
22BuildRequires: perl(PerlIO::utf8_strict)
23BuildRequires: perl-Sub-Exporter
24%endif
25BuildArch: noarch
26BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28%description
29It's boring to deal with opening files for IO, converting strings to
30handle-like objects, and all that. With Mixin::Linewise::Readers and
31Mixin::Linewise::Writers, you can just write a method to handle
32handles, and methods for handling strings and filenames are added for
33you.
34
35%prep
36%setup -q -n %{pdir}-%{pnam}-%{version}
37
38%build
39%{__perl} Makefile.PL \
40 INSTALLDIRS=vendor
41%{__make}
42
43%{?with_tests:%{__make} test}
44
45%install
46rm -rf $RPM_BUILD_ROOT
47
48%{__make} pure_install \
49 DESTDIR=$RPM_BUILD_ROOT
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%files
55%defattr(644,root,root,755)
56%doc Changes README
57%dir %{perl_vendorlib}/Mixin
58%{perl_vendorlib}/Mixin/*.pm
59%{perl_vendorlib}/Mixin/Linewise
60%{_mandir}/man3/*
This page took 0.084613 seconds and 4 git commands to generate.