parent
d688169fe5
commit
b24829bffe
@ -0,0 +1 @@
|
||||
Test-Script-1.02.tar.gz
|
@ -0,0 +1,61 @@
|
||||
Name: perl-Test-Script
|
||||
Version: 1.02
|
||||
Release: 2%{?dist}
|
||||
Summary: Cross-platform basic tests for scripts
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/Test-Script/
|
||||
Source0: http://www.cpan.org/modules/by-module/Test/Test-Script-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
BuildRequires: perl(IPC::Run3) >= 0.034
|
||||
BuildRequires: perl(Test::More)
|
||||
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
|
||||
%description
|
||||
The intent of this module is to provide a series of basic tests for scripts
|
||||
in the bin directory of your Perl distribution.
|
||||
|
||||
%prep
|
||||
%setup -q -n Test-Script-%{version}
|
||||
# Broken permissions in tarball
|
||||
chmod -x Changes lib/Test/*pm
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
||||
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc Changes LICENSE README
|
||||
%{perl_vendorlib}/*
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Tue Sep 18 2007 Ralf Corsépius <rc040203@freenet.de> - 1.02-2
|
||||
- Reflect license tag changes.
|
||||
- BR: perl(Test::More).
|
||||
- Remove BR: perl.
|
||||
- Add chmod -x Changes lib/Test/*pm
|
||||
|
||||
* Tue Aug 07 2007 Ralf Corsépius <rc040203@freenet.de> - 1.02-1
|
||||
- Specfile autogenerated by cpanspec 1.73.
|
Loading…
Reference in new issue