]> git.pld-linux.org Git - packages/perl-Check-ISA.git/blame - perl-Check-ISA.spec
- release 2
[packages/perl-Check-ISA.git] / perl-Check-ISA.spec
CommitLineData
93465e61 1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
5%include /usr/lib/rpm/macros.perl
6%define pdir Check
7%define pnam ISA
8Summary: Check::ISA - DWIM, correct checking of an object's class
9Summary(pl.UTF-8): Check::ISA - DWIM, poprawne sprawdzanie klas obiektów
10Name: perl-Check-ISA
11Version: 0.04
c1a5a5f7 12Release: 2
93465e61 13# same as perl
14License: GPL v1+ or Artistic
15Group: Development/Languages/Perl
16Source0: http://search.cpan.org/CPAN/authors/id/N/NU/NUFFIN/%{pdir}-%{pnam}-%{version}.tar.gz
17# Source0-md5: 7d118aadd4069b4287f309482776a2bd
18URL: http://search.cpan.org/dist/Check-ISA/
19BuildRequires: perl-devel >= 1:5.8.0
20BuildRequires: rpm-perlprov >= 4.1-13
21%if %{with tests}
22BuildRequires: perl-Sub-Exporter
23BuildRequires: perl-Test-use-ok
24%endif
25BuildArch: noarch
26BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28%description
29This module provides several functions to assist in testing whether a
30value is an object, and if so asking about its class.
31
32%description -l pl.UTF-8
33Moduł ten dostarcza funkcje do wparcia sprawdzania czy wartość jest
34obiektem, i jeśli jest, do odpytania o jego klasę.
35
36%prep
37%setup -q -n %{pdir}-%{pnam}-%{version}
38
39%build
40%{__perl} Makefile.PL \
41 INSTALLDIRS=vendor
42%{__make}
43
44%{?with_tests:%{__make} test}
45
46%install
47rm -rf $RPM_BUILD_ROOT
48
49%{__make} pure_install \
50 DESTDIR=$RPM_BUILD_ROOT
51
52%clean
53rm -rf $RPM_BUILD_ROOT
54
55%files
56%defattr(644,root,root,755)
57%doc Changes
c5455b00 58%dir %{perl_vendorlib}/Check
93465e61 59%{perl_vendorlib}/Check/*.pm
60%{_mandir}/man3/*
This page took 0.097697 seconds and 4 git commands to generate.