]> git.pld-linux.org Git - packages/perl-Math-MatrixReal.git/blame - perl-Math-MatrixReal.spec
- tabs in preamble
[packages/perl-Math-MatrixReal.git] / perl-Math-MatrixReal.spec
CommitLineData
29b7880d 1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
55ba19c3 5%include /usr/lib/rpm/macros.perl
4396b476 6%define pdir Math
7%define pnam MatrixReal
a4e4b0b8 8Summary: Math::MatrixReal - implements the data type "matrix of reals"
6aa0ab72 9Summary(pl.UTF-8): Math::MatrixReal - implementacja typu danych "macierz liczb rzeczywistych"
294890f1 10Name: perl-Math-MatrixReal
17f977ab 11Version: 1.9
3a6dd040 12Release: 6
29b7880d 13# same as perl
14License: GPL v1+ or Artistic
294890f1 15Group: Development/Languages/Perl
a2196780 16Source0: http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
b86f1c1a 17# Source0-md5: 4df6e63d0e9ff902f1af5dc430a0b483
c29a04ec 18BuildRequires: perl-devel >= 1:5.8.0
a02f9fec 19BuildRequires: rpm-perlprov >= 4.1-13
ce7bab9e 20BuildArch: noarch
87bdce24 21BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
294890f1 22
23%description
0dd97c97 24Implements the data type "matrix of reals" (and consequently also
25"vector of reals"), which can be used almost like any other basic Perl
755f34e4
JB
26type thanks to OPERATOR OVERLOADING, i.e., "$product = $matrix1 *
27$matrix2;" does what you would like it to do (a matrix
28multiplication).
29
8daa5ae7
JR
30%description -l pl.UTF-8
31Ten moduł jest implementacją typu danych "macierz liczb rzeczywistych"
32(i w konsekwencji także "wektor liczb rzeczywistych"), który może być
33używany prawie tak samo jak każdy inny podstawowy typ Perla dzięki
34przeciążaniu operatorów - tzn. "$product = $matrix1 * $matrix2;" zrobi
35to, czego się oczekuje (pomnoży macierze).
294890f1 36
37%prep
55ba19c3 38%setup -q -n %{pdir}-%{pnam}-%{version}
294890f1 39
40%build
a02f9fec 41%{__perl} Makefile.PL \
a11cc985 42 INSTALLDIRS=vendor
daa630c0 43%{__make}
294890f1 44
29b7880d 45%{?with_tests:%{__make} test}
46
294890f1 47%install
48rm -rf $RPM_BUILD_ROOT
0dd97c97 49
80ae6e67 50%{__make} install \
51 DESTDIR=$RPM_BUILD_ROOT
294890f1 52
3a6dd040
AG
53# get rid of pod documentation
54rm -f $RPM_BUILD_ROOT%{perl_vendorlib}/Math/*.pod
55
294890f1 56%clean
57rm -rf $RPM_BUILD_ROOT
58
59%files
60%defattr(644,root,root,755)
63725543 61%doc README
a02f9fec 62%{perl_vendorlib}/Math/*
294890f1 63%{_mandir}/man3/*
This page took 0.114868 seconds and 4 git commands to generate.