]> git.pld-linux.org Git - packages/perl-Devel-Cycle.git/blame - perl-Devel-Cycle.spec
- new
[packages/perl-Devel-Cycle.git] / perl-Devel-Cycle.spec
CommitLineData
191af8fa
ER
1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
5%include /usr/lib/rpm/macros.perl
6%define pdir Devel
7%define pnam Cycle
8Summary: Devel::Cycle - Find memory cycles in objects
9Name: perl-Devel-Cycle
10Version: 1.07
11Release: 1
12# same as perl
13License: GPL v1+ or Artistic
14Group: Development/Languages/Perl
15Source0: http://www.cpan.org/modules/by-authors/id/L/LD/LDS/Devel-Cycle-%{version}.tar.gz
16# Source0-md5: 7d8a1e0ca88f8a66bb1344a217d21f1c
17URL: http://search.cpan.org/dist/Devel-Cycle/
18BuildRequires: perl-devel >= 1:5.8.0
19BuildRequires: rpm-perlprov >= 4.1-13
20BuildArch: noarch
21BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23%description
24This is a simple developer's tool for finding circular references in
25objects and other types of references. Because of Perl's
26reference-count based memory management, circular references will
27cause memory leaks.
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
40rm -rf $RPM_BUILD_ROOT
41
42%{__make} install \
43 DESTDIR=$RPM_BUILD_ROOT
44
45%clean
46rm -rf $RPM_BUILD_ROOT
47
48%files
49%defattr(644,root,root,755)
50%doc Changes README
51%{perl_vendorlib}/Devel/*.pm
52%{_mandir}/man3/*
This page took 0.055994 seconds and 4 git commands to generate.