Displaying 2 results from an estimated 2 matches for "perl_vendorlib".
2008 Aug 21
7
perl
Am trying to install perl module "File::Find", but not able it gave the
following
cpan[1]> install File::Find
CPAN: Storable loaded ok (v2.15)
Going to read /root/.cpan/Metadata
Database was generated on Thu, 21 Aug 2008 02:03:21 GMT
Running install for module 'File::Find'
The most recent version "1.12" of the module "File::Find"
is part of the
2011 Feb 11
1
[PATCH v2v] Add support for performing automated builds
...find $RPM_BUILD_ROOT/%{perl_archlib} -name .packlist -type f | xargs rm
+
+
+%check
+./Build test
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+
+%doc TODO.txt
+%doc META.yml
+%doc ChangeLog
+%doc COPYING COPYING.LIB
+
+# For noarch packages: vendorlib
+%{perl_vendorlib}/*
+
+# Man pages
+%{_mandir}/man1/*.1*
+%{_mandir}/man3/*.3*
+%{_mandir}/man5/*.5*
+
+# Executables
+%attr(0755,root,root) %{_bindir}/*
+
+%dir %{_localstatedir}/lib/virt-v2v
+
+%config(noreplace) %{_sysconfdir}/virt-v2v.conf
+%config(noreplace) %{_localstatedir}/lib/virt-v2v/software
+
+
+%change...