]> git.pld-linux.org Git - packages/perl-Hash-Flatten.git/blame - perl-Hash-Flatten.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-Hash-Flatten.git] / perl-Hash-Flatten.spec
CommitLineData
cf5eb3a5 1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
cf5eb3a5 5%define pdir Hash
6%define pnam Flatten
7Summary: Hash::Flatten - flatten/unflatten complex data hashes
8Summary(pl.UTF-8): Hash::Flatten - wygładź/pomarszcz wartości funkcji skrótu dla złożonych danych
9Name: perl-Hash-Flatten
2bbb775a 10Version: 1.19
cf5eb3a5 11Release: 1
12# same as perl
13License: GPL v1+ or Artistic
14Group: Development/Languages/Perl
15Source0: http://search.cpan.org/CPAN/authors/id/B/BB/BBC/%{pdir}-%{pnam}-%{version}.tar.gz
2bbb775a 16# Source0-md5: cc2ffc365858b90192dbb8be52311267
cf5eb3a5 17URL: http://search.cpan.org/dist/Hash-Flatten/
18BuildRequires: perl-devel >= 1:5.8.0
19BuildRequires: rpm-perlprov >= 4.1-13
20%if %{with tests}
21BuildRequires: perl(Log::Trace)
22BuildRequires: perl(Test::Assertions)
23%endif
24BuildArch: noarch
25BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27%description
28Converts back and forth between a nested hash structure and a flat
29hash of delimited key-value pairs. Useful for protocols that only
30support key-value pairs (such as CGI and DBMs).
31
32%description -l pl.UTF-8
33Konwertuje przód i tył pomiędzy zagnieżdzoną strukturą wartości
34funkcji skrótu i płaską wartością funkcji skrótu jako rozdzielone pary
35kluczy i wartości.
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} pure_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}/Hash/*.pm
60%{_mandir}/man3/*
This page took 0.114129 seconds and 4 git commands to generate.