]> git.pld-linux.org Git - packages/perl-Devel-Profiler.git/blob - perl-Devel-Profiler.spec
use generic url
[packages/perl-Devel-Profiler.git] / perl-Devel-Profiler.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4
5 %define         pdir    Devel
6 %define         pnam    Profiler
7 %include        /usr/lib/rpm/macros.perl
8 Summary:        Devel::Profiler - a Perl profiler compatible with dprofpp
9 Summary(pl.UTF-8):      Devel::Profiler - profiler dla Perla kompatybilny z dprofpp
10 Name:           perl-Devel-Profiler
11 Version:        0.04
12 Release:        4
13 # same as perl 5
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:  c52d615e3083defd2c71726f21b2127a
18 URL:            http://search.cpan.org/dist/Devel-Profiler/
19 BuildRequires:  perl-devel >= 1:5.8.0
20 BuildRequires:  perl-tools-devel
21 BuildRequires:  rpm-perlprov >= 4.1-13
22 %if %{with tests}
23 BuildRequires:  perl-Test-Simple
24 %endif
25 BuildArch:      noarch
26 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28 %description
29 This module implements a Perl profiler that outputs profiling data in
30 a format compatible with dprofpp, Devel::DProf's profile analysis
31 tool. It is meant to be a drop-in replacement for Devel::DProf.
32
33 %description -l pl.UTF-8
34 Ten moduł jest implementacją perlowego profilera, który zapisuje dane
35 profilujące w formacie kompatybilnym z dprofpp, czyli narzędziem
36 analizującym z Devel::DProf. Ma być zastepnikiem Devel::DProf.
37
38 %prep
39 %setup -q -n %{pdir}-%{pnam}-%{version}
40
41 %build
42 %{__perl} Makefile.PL \
43         INSTALLDIRS=vendor
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 %{perl_vendorlib}/%{pdir}/*.pm
60 %{perl_vendorlib}/%{pdir}/%{pnam}
61 %{_mandir}/man3/*
This page took 0.085889 seconds and 3 git commands to generate.