]> git.pld-linux.org Git - packages/perl-Math-Matrix.git/blob - perl-Math-Matrix.spec
- cosmetics: unification
[packages/perl-Math-Matrix.git] / perl-Math-Matrix.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define pdir    Math
7 %define pnam    Matrix
8 Summary:        Math::Matrix Perl module - multiply and invert matrices
9 Summary(pl):    Modu³ Perla Math::Matrix - mno¿enie i odwracanie macierzy
10 Name:           perl-Math-Matrix
11 Version:        0.4
12 Release:        6
13 # same as perl
14 License:        GPL v1+ or Artistic
15 Group:          Development/Languages/Perl
16 Source0:        http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  fad8f822e5e417ff12ccc2205eda206a
18 BuildRequires:  perl-devel >= 5.6
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 BuildArch:      noarch
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 Math::Matrix - Multiply and invert Matrices.
25
26 %description -l pl
27 Modu³ Math::Matrix - mno¿±cy i odwracaj±cy macierze.
28
29 %prep
30 %setup -q -n %{pdir}-%{pnam}-%{version}
31
32 %build
33 %{__perl} Makefile.PL \
34         INSTALLDIRS=vendor
35 %{__make}
36
37 %{?with_tests:%{__make} test}
38
39 %install
40 rm -rf $RPM_BUILD_ROOT
41 %{__make} install \
42         DESTDIR=$RPM_BUILD_ROOT
43
44 %clean
45 rm -rf $RPM_BUILD_ROOT
46
47 %files
48 %defattr(644,root,root,755)
49 %doc README
50 %{perl_vendorlib}/Math/Matrix.pm
51 %{_mandir}/man3/*
This page took 0.064053 seconds and 4 git commands to generate.