Changes of Revision 2
[-] | Added | perl-Math-BigInt-FastCalc.spec |
x 1
2 +%define modname Math-BigInt-FastCalc 3 +Name: perl-%{modname} 4 +Version: 0.19 5 +Release: 1 6 +Summary: Math::BigInt::Calc With Some XS for More Speed 7 +Requires: perl = %{perl_version} 8 +BuildRequires: perl perl(Test::More) 9 +License: GPL/Artistic 10 +Group: Development/Libraries/Perl 11 +Source: %{modname}-%{version}.tar.bz2 12 +BuildRoot: %{_tmppath}/%{name}-root 13 + 14 +%description 15 +Provides support for fast big integer calculations. 16 + 17 +Authors: 18 +-------- 19 + Tels <nospam-abuse@bloodgate.com> 20 + Mark Biggar 21 + John Peacock 22 + 23 +%prep 24 +%setup -q -n %{modname}-%{version} 25 + 26 +%build 27 +perl Makefile.PL 28 +make 29 +make test 30 + 31 +%install 32 +%perl_make_install 33 +%perl_process_packlist 34 + 35 +%clean 36 +rm -rf %{buildroot} 37 + 38 +%files 39 +%defattr(-, root, root) 40 +%doc CHANGES CREDITS README TODO 41 +%doc %{_mandir}/man?/* 42 +%{perl_vendorarch}/Math 43 +%{perl_vendorarch}/auto/Math 44 +/var/adm/perl-modules/%{name} 45 + 46 +%changelog 47 + 48 +* Wed Jan 02 2008 - James Oakley <jfunk@funktronics.ca> - 0.15-1 49 +- Initial release 50 |