]> git.pld-linux.org Git - packages/perl-Math-Quaternion.git/blob - perl-Math-Quaternion.spec
d7a903b1f1d02116e5e3de4cfa424aac965b8332
[packages/perl-Math-Quaternion.git] / perl-Math-Quaternion.spec
1 #
2 # Conditional build:
3 # _without_tests - do not perform "make test"
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define pdir    Math
7 %define pnam    Quaternion
8 Summary:        Math::Quaternion - Perl class to represent quaternions
9 Summary(pl):    Math::Quaternion - klasa Perla do reprezentowanai kwaternionów
10 Name:           perl-Math-Quaternion
11 Version:        0.01
12 Release:        1
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  afb5a960eb511d572a323608c42d7b11
17 BuildRequires:  perl-devel >= 5.8.0
18 BuildRequires:  rpm-perlprov >= 4.1-13
19 %{!?_without_tests:BuildRequires:       perl-Test-Simple}
20 BuildArch:      noarch
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 This package lets you create and manipulate quaternions. A
25 quaternion is a mathematical object developed as a kind of
26 generalization of complex numbers, usually represented by an array
27 of four real numbers, and is often used to represent rotations in
28 three-dimensional space.
29
30 %description -l pl
31 Ten pakiet pozwala na tworzenie oraz wykorzystywanie kwaternionów w
32 obliczeniach. Kwaternion to obiekt matematyczny wymy¶lony jako rodzaj
33 uogólnienia liczb zespolonych, zazwyczaj reprezentowany jako tablica
34 czterech liczb rzeczywistych, czêsto u¿ywany do reprezentowania
35 obrotów w przestrzeni trójwymiarowej.
36
37 %prep
38 %setup -q -n %{pdir}-%{pnam}-%{version}
39
40 %build
41 %{__perl} Makefile.PL \
42         INSTALLDIRS=vendor
43
44 %{__make}
45
46 %{!?_without_tests:%{__make} test}
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50
51 %{__make} install \
52         DESTDIR=$RPM_BUILD_ROOT
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %files
58 %defattr(644,root,root,755)
59 %doc Changes
60 %{perl_vendorlib}/Math/Quaternion.pm
61 %{_mandir}/man3/*
This page took 0.067088 seconds and 3 git commands to generate.