68 lines
1.8 KiB
RPMSpec
68 lines
1.8 KiB
RPMSpec
#from https://fedoraproject.org to https://openeuler.org/
|
|
|
|
Name: perl-Text-Aligner
|
|
Version: 0.16
|
|
Release: 1
|
|
Summary: Text::Aligner Perl module
|
|
License: ISC
|
|
URL: https://metacpan.org/release/Text-Aligner
|
|
Source0: https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Text-Aligner-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRequires: coreutils
|
|
BuildRequires: findutils
|
|
BuildRequires: make
|
|
BuildRequires: perl-generators
|
|
BuildRequires: perl-interpreter
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
|
BuildRequires: perl(strict)
|
|
BuildRequires: perl(warnings)
|
|
BuildRequires: sed
|
|
# Run-time
|
|
BuildRequires: perl(Exporter)
|
|
BuildRequires: perl(Term::ANSIColor) >= 2.02
|
|
BuildRequires: perl(vars)
|
|
# Tests only
|
|
BuildRequires: perl(blib)
|
|
BuildRequires: perl(constant)
|
|
BuildRequires: perl(File::Spec)
|
|
BuildRequires: perl(IO::Handle)
|
|
BuildRequires: perl(IPC::Open3)
|
|
BuildRequires: perl(Test::More)
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
|
|
%{?perl_default_filter}
|
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}perl\\(Term::ANSIColor\\)$
|
|
|
|
%description
|
|
Text::Aligner exports a single function, align(), which is used to justify
|
|
strings to various alignment styles. The alignment specification is the
|
|
first argument, followed by any number of scalars which are subject to
|
|
alignment.
|
|
|
|
%prep
|
|
%setup -q -n Text-Aligner-%{version}
|
|
rm -r inc
|
|
sed -i -e '/^inc\// d' MANIFEST
|
|
find -type f -exec chmod -x {} +
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
|
%{make_build}
|
|
|
|
%install
|
|
%{make_install}
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
%check
|
|
make test
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc Changes README
|
|
%{perl_vendorlib}/*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Tue May 11 2021 wangyueliang <wangyueliang@kylinos.cn> - 0.16-1
|
|
- Package init
|