forked from pool/perl-Number-Format
+ Add support for IEC60027 (Ki, Mi, Gi prefixes) with mode option + Minor tweak to format_bytes test for German locales + many bug fixes + for more details, please see: /usr/share/doc/packages/perl-Number-Format/CHANGES - specfile rebuild via cpanspec OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Number-Format?expand=0&rev=6
64 lines
1.9 KiB
RPMSpec
64 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package perl-Number-Format
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
Name: perl-Number-Format
|
|
Version: 1.73
|
|
Release: 1
|
|
License: Artistic
|
|
%define cpan_name Number-Format
|
|
Summary: Perl extension for formatting numbers
|
|
Url: http://search.cpan.org/dist/Number-Format/
|
|
Group: Development/Libraries/Perl
|
|
#Source: http://www.cpan.org/authors/id/W/WR/WRW/Number-Format-%%{version}.tar.gz
|
|
Source: %{cpan_name}-%{version}.tar.gz
|
|
BuildRequires: perl(Carp)
|
|
BuildRequires: perl(POSIX)
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
Requires: perl(Carp)
|
|
Requires: perl(POSIX)
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
%{perl_requires}
|
|
|
|
%description
|
|
These functions provide an easy means of formatting numbers in a manner
|
|
suitable for displaying to the user.
|
|
|
|
There are two ways to use this package. One is to declare an object of type
|
|
Number::Format, which you can think of as a formatting engine. The various
|
|
functions defined here are provided as object methods.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS='vendor'
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%clean
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
%files -f %{name}.files
|
|
%defattr(644,root,root,755)
|
|
%doc CHANGES MANIFEST README TODO
|
|
|
|
%changelog
|