]> git.pld-linux.org Git - packages/perl-Math-Gradient.git/blob - perl-Math-Gradient.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-Math-Gradient.git] / perl-Math-Gradient.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4
5 %define         pdir    Math
6 %define         pnam    Gradient
7 Summary:        Math::Gradient - calculating gradients for colour transitions etc.
8 Summary(pl.UTF-8):      Math::Gradient - obliczanie gradientów do przejść kolorów itp.
9 Name:           perl-Math-Gradient
10 Version:        0.04
11 Release:        2
12 # same as perl
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tgz
16 # Source0-md5:  4324edf09a8f684153ac0079f8507a0b
17 URL:            http://search.cpan.org/dist/Math-Gradient/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 BuildArch:      noarch
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 Math::Gradient is used to calculate smooth transitions between
25 numerical values (also known as a "Gradient"). This module was written
26 mainly to mix colours, but it probably has several other applications.
27 Methods are supported to handle both basic and multiple-point
28 gradients, both with scalars and arrays.
29
30 %description -l pl.UTF-8
31 Math::Gradient służy do obliczania płynnych przejść między wartościami
32 liczbowymi (znanych też jako "gradienty"). Moduł został napisany
33 głównie do mieszania kolorów, ale prawdopodobnie ma parę innych
34 zastosowań. Zawiera metody do obsługi prostych i wielopunktowych
35 gradientów, zarówno na skalarach, jak i tablicach.
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 %{?with_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 README
60 %{perl_vendorlib}/Math/Gradient.pm
61 %{_mandir}/man3/*
This page took 0.089365 seconds and 3 git commands to generate.