]> git.pld-linux.org Git - packages/perl-Carp-Assert.git/blame_incremental - perl-Carp-Assert.spec
- converted to UTF-8
[packages/perl-Carp-Assert.git] / perl-Carp-Assert.spec
... / ...
CommitLineData
1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
5%include /usr/lib/rpm/macros.perl
6%define pdir Carp
7%define pnam Assert
8Summary: Carp::Assert - executable comments
9Summary(pl.UTF-8): Carp::Assert - wykonywalne komentarze
10Name: perl-Carp-Assert
11Version: 0.18
12Release: 4
13# same as perl
14License: GPL v1+ or Artistic
15Group: Development/Languages/Perl
16Source0: http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
17# Source0-md5: 8137794654f5802730c05167327d496e
18BuildRequires: perl-devel >= 1:5.8.0
19%if %{with tests}
20BuildRequires: perl-Test-Inline >= 0.16-3
21BuildRequires: perl-Test-Simple >= 0.40
22%endif
23BuildRequires: rpm-perlprov >= 4.1-13
24BuildArch: noarch
25BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27%description
28Carp::Assert is intended for a purpose like the ANSI C library
29assert.h. An assertion is used to prevent the impossible from being
30asked of your code, or at least tell you when it does.
31
32%description -l pl.UTF-8
33Moduł Carp::Assert służy do tego, co assert.h z ANSI C. Używa się
34zapewnień (assertion), aby wykluczyć występowanie rzeczy niemożliwych,
35albo przynajmniej wiedzieć, gdzie się zdarzają.
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
48rm -rf $RPM_BUILD_ROOT
49
50%{__make} install \
51 DESTDIR=$RPM_BUILD_ROOT
52
53%clean
54rm -rf $RPM_BUILD_ROOT
55
56%files
57%defattr(644,root,root,755)
58%doc Changes README
59%{perl_vendorlib}/Carp/Assert.pm
60%{_mandir}/man3/*
This page took 0.036735 seconds and 4 git commands to generate.