]> git.pld-linux.org Git - packages/perl-Log-Trace.git/blob - perl-Log-Trace.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-Log-Trace.git] / perl-Log-Trace.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %define pdir    Log
6 %define pnam    Trace
7 Summary:        Log::Trace - provides a unified approach to tracing
8 Summary(pl.UTF-8):      Log::Trace - dostarcza jednolite podejście do śledzenia
9 Name:           perl-Log-Trace
10 Version:        1.070
11 Release:        1
12 # same as perl
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://search.cpan.org/CPAN/authors/id/B/BB/BBC/Log-Trace-%{version}.tar.gz
16 # Source0-md5:  773aefa7539b1857edb3e225cfbc4a22
17 URL:            http://search.cpan.org/dist/Log-Trace/
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 A module to provide a unified approach to tracing. A script can use
25 Log::Trace qw( < mode > ) to set the behaviour of the TRACE function.
26
27 By default, the trace functions are exported to the calling package
28 only. You can export the trace functions to other packages with the
29 Deep option. See "OPTIONS" for more information.
30
31 All exports are in uppercase (to minimise collisions with "real"
32 functions).
33
34 # %description -l pl.UTF-8
35 # TODO
36
37 %prep
38 %setup -q -n %{pdir}-%{pnam}-%{version}
39
40 %build
41 %{__perl} Makefile.PL \
42         INSTALLDIRS=vendor
43 %{__make}
44
45 %{?with_tests:%{__make} test}
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49
50 %{__make} pure_install \
51         DESTDIR=$RPM_BUILD_ROOT
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc Changes README
59 %{perl_vendorlib}/Log/*.pm
60 %{perl_vendorlib}/Log/Trace
61 %{_mandir}/man3/*
This page took 0.102618 seconds and 4 git commands to generate.