]> git.pld-linux.org Git - packages/perl-Class-Base.git/blame - perl-Class-Base.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-Class-Base.git] / perl-Class-Base.spec
CommitLineData
7de1a222 1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
54a0c060 4
7de1a222 5%define pdir Class
6%define pnam Base
7Summary: Class::Base - useful base class for deriving other modules
da3555fc 8Summary(pl.UTF-8): Class::Base - klasa bazowa przydatna do tworzenia innych modułów
7de1a222 9Name: perl-Class-Base
9718230d 10Version: 0.04
11Release: 1
7de1a222 12# same as perl
13License: GPL v1+ or Artistic
14Group: Development/Languages/Perl
15Source0: http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
9718230d 16# Source0-md5: 526cc491f2a02991fce061bcc13e2fa8
54a0c060 17URL: http://search.cpan.org/dist/Class-Base/
7de1a222 18BuildRequires: perl-devel >= 1:5.8.0
19BuildRequires: rpm-perlprov >= 4.1-13
7de1a222 20BuildArch: noarch
21BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23%description
24This module implements a simple base class from which other modules
25can be derived, thereby inheriting a number of useful methods such as
ba0c50e1 26new(), init(), params(), clone(), error() and debug().
7de1a222 27
2c28cd4e
JR
28%description -l pl.UTF-8
29Moduł ten zawiera implementację prostej klasy bazowej, która może
30służyć do wywiedzenia z niej innych modułów, które tym samym
31odziedziczą takie przydatne metody, jak new(), init(), params(),
ba0c50e1 32clone(), error() i debug().
7de1a222 33
34%prep
35%setup -q -n %{pdir}-%{pnam}-%{version}
36
37%build
38%{__perl} Makefile.PL \
39 INSTALLDIRS=vendor
40%{__make}
41
42%{?with_tests:%{__make} test}
43
44%install
45rm -rf $RPM_BUILD_ROOT
46
47%{__make} install \
48 DESTDIR=$RPM_BUILD_ROOT
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53%files
54%defattr(644,root,root,755)
55%doc Changes TODO
56%{perl_vendorlib}/Class/*.pm
57%{_mandir}/man3/*
This page took 0.03139 seconds and 4 git commands to generate.