perl-Text-TabsplusWrap/perl-Text-Tabs+Wrap.spec
Petr Písař 4915e99290 Import
2015-03-25 17:19:34 +01:00

57 lines
1.5 KiB
RPMSpec

Name: perl-Text-Tabs+Wrap
Version: 2013.0523
Release: 1%{?dist}
Summary: Expand tabs and do simple line wrapping
License: TTWL
Group: Development/Libraries
URL: http://search.cpan.org/dist/Text-Tabs%2BWrap/
Source0: http://www.cpan.org/authors/id/M/MU/MUIR/modules/Text-Tabs+Wrap-%{version}.tar.gz
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl(ExtUtils::MakeMaker)
# Run-time:
BuildRequires: perl(Exporter)
BuildRequires: perl(re)
BuildRequires: perl(strict)
BuildRequires: perl(vars)
BuildRequires: perl(warnings::register)
# Tests:
BuildRequires: perl(bytes)
BuildRequires: perl(Test::More)
BuildRequires: perl(warnings)
# Optional tests:
# Benchmark not used
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
%description
Text::Tabs performs the same job that the UNIX expand(1) and unexpand(1)
commands do: adding or removing tabs from a document.
Text::Wrap::wrap() will reformat lines into paragraphs. All it does is break
up long lines, it will not join short lines together.
%prep
%setup -q -n Text-Tabs+Wrap-%{version}
%build
perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%install
make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
%{_fixperms} %{buildroot}/*
%check
make test
%files
%doc CHANGELOG README
%{perl_vendorlib}/*
%{_mandir}/man3/*
%changelog
* Wed Feb 13 2013 Petr Pisar <ppisar@redhat.com> - 2013.0523-1
- Version 2013.0523 packaged