65 lines
1.9 KiB
RPMSpec
65 lines
1.9 KiB
RPMSpec
|
%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
|
||
|
|
||
|
Name: perl-Class-Accessor
|
||
|
Version: 0.34
|
||
|
Release: 2mamba
|
||
|
Summary: Class::Accessor - Automagically generates accessors/mutators for your class
|
||
|
Group: System/Libraries/Perl
|
||
|
Vendor: openmamba
|
||
|
Distribution: openmamba
|
||
|
Packager: Aleph0 <aleph0@openmamba.org>
|
||
|
URL: http://www.cpan.org
|
||
|
Source: http://www.cpan.org/modules/by-module/Class/Class-Accessor-%{version}.tar.gz
|
||
|
License: Artistic
|
||
|
Requires: perl >= %perl_major_ver
|
||
|
BuildRequires: perl-devel >= %perl_major_ver
|
||
|
BuildArch: noarch
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||
|
|
||
|
%description
|
||
|
This module automagically generates accessors/mutators for your class.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n Class-Accessor-%{version}
|
||
|
|
||
|
%build
|
||
|
perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor
|
||
|
%make
|
||
|
%make test
|
||
|
|
||
|
%install
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
%makeinstall_perl
|
||
|
packlist=`find %{buildroot} -name .packlist`
|
||
|
[ -z "$packlist" ] && exit 1 || cat $packlist | \
|
||
|
sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \
|
||
|
sort -u > .packlist && rm $packlist
|
||
|
|
||
|
strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'`
|
||
|
for dir in `find %{buildroot} -type d | grep $strid`; do
|
||
|
echo "%dir ${dir#%buildroot}" >> .packlist
|
||
|
done
|
||
|
|
||
|
%clean
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
rm -f .packlist
|
||
|
|
||
|
%files -f .packlist
|
||
|
%defattr(-,root,root)
|
||
|
|
||
|
%changelog
|
||
|
* Tue Nov 13 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 0.34-2mamba
|
||
|
- perl 5.16 mass rebuild
|
||
|
|
||
|
* Sun Sep 20 2009 Automatic Build System <autodist@mambasoft.it> 0.34-1mamba
|
||
|
- automatic update by autodist
|
||
|
|
||
|
* Fri May 22 2009 Automatic Build System <autodist@mambasoft.it> 0.33-1mamba
|
||
|
- automatic update by autodist
|
||
|
|
||
|
* Tue Nov 04 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 0.31-2mamba
|
||
|
- automatic rebuild by autodist
|
||
|
|
||
|
* Mon Nov 12 2007 Aleph0 <aleph0@openmamba.org> 0.31-1mamba
|
||
|
- package created by autospec
|