perl-File-Copy-Recursive/perl-File-Copy-Recursive.spec

53 lines
1.4 KiB
RPMSpec
Raw Normal View History

Name: perl-File-Copy-Recursive
Version: 0.30
2007-01-18 02:56:04 +00:00
Release: 2%{?dist}
Summary: Extension for recursively copying files and directories
License: GPL or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/File-Copy-Recursive/
Source0: http://www.cpan.org/modules/by-module/File/File-Copy-Recursive-%{version}.tar.gz
2007-01-18 02:56:04 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
BuildArch: noarch
BuildRequires: perl(File::Copy)
BuildRequires: perl(File::Spec)
%description
This module copies and moves directories recursively to an optional depth and
attempts to preserve each file or directory's mode.
%prep
%setup -q -n File-Copy-Recursive-%{version}
%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 -type d -depth -exec rmdir {} 2>/dev/null ';'
chmod -R u+w $RPM_BUILD_ROOT/*
%clean
rm -rf $RPM_BUILD_ROOT
%check
make test
%files
%defattr(-,root,root,-)
%doc Changes README
%{perl_vendorlib}/File
%{_mandir}/man3/*
%changelog
2007-01-18 02:56:04 +00:00
* Thu Jan 18 2007 Ralf Corsépius <rc040203@freenet.de> - 0.30-2
- Cosmetics.
* Wed Jan 17 2007 Ralf Corsépius <rc040203@freenet.de> - 0.30-1
- Initial Fedora submission.