%define perl_vendorlib %(eval "`%{_bindir}/perl -V:installvendorlib`"; echo $installvendorlib) Name: perl-Readonly Version: 1.03 Release: 1 Summary: Facility for creating read-only scalars, arrays, hashes Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Readonly/ Source0: http://search.cpan.org/CPAN/authors/id/R/RO/ROODE/Readonly-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::More) Requires: perl-Readonly-XS Requires: perl(:MODULE_COMPAT_%(eval "`%{_bindir}/perl -V:version`"; echo $version)) Requires: perl >= 5.8.8 %description Readonly.pm provides a facility for creating non-modifiable scalars, arrays, and hashes. Readonly.pm * Creates scalars, arrays (not lists), and hashes. * Creates variables that look and work like native perl variables. * Creates global or lexical variables. * Works at runtime or compile time. * Works with deep or shallow data structures. * Prevents reassignment of Readonly variables. %prep %setup -q -n Readonly-%{version} %build %{_bindir}/perl Makefile.PL INSTALLDIRS=vendor make %install [ "${RPM_BUILD_ROOT}" != "/" ] && 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}/* # make sure this goes where it should to be... mv ${RPM_BUILD_ROOT}%{perl_vendorlib}/benchmark.pl . %clean [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} %files %defattr(-,root,system,-) %doc Changes README benchmark.pl %{perl_vendorlib}/Readonly.pm %{_mandir}/man3/* %changelog * Sun Nov 09 2008 Michael Perzl - 1.03-1 - first version for AIX V5.1 and higher