]> git.pld-linux.org Git - packages/perl-HTML-TagCloud.git/blame - perl-HTML-TagCloud.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-HTML-TagCloud.git] / perl-HTML-TagCloud.spec
CommitLineData
c874f7cc 1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
c874f7cc 5%define pdir HTML
6%define pnam TagCloud
7Summary: HTML::TagCloud - generate an HTML tag cloud
cbfeb46d 8Summary(pl.UTF-8): HTML::TagCloud - generowanie HTML-owej chmury tagów
c874f7cc 9Name: perl-HTML-TagCloud
ee241dba 10Version: 0.37
c874f7cc 11Release: 1
12# same as perl
13License: GPL v1+ or Artistic
14Group: Development/Languages/Perl
f0571c06 15Source0: http://search.cpan.org/CPAN/authors/id/R/RO/ROBERTSD/%{pdir}-%{pnam}-%{version}.tar.gz
ee241dba 16# Source0-md5: db375dd22cb8c8bb5a4f08b4e2adc2e9
d5940970 17URL: http://search.cpan.org/dist/HTML-TagCloud/
c874f7cc 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
24The HTML::TagCloud module enables you to generate "tag clouds" in
25HTML. Tag clouds serve as a textual way to visualize terms and topics
26that are used most frequently. The tags are sorted alphabetically and
27a larger font is used to indicate more frequent term usage.
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
f0571c06 51%{perl_vendorlib}/%{pdir}/TagCloud.pm
52%{_mandir}/man3/HTML::TagCloud.3pm*
This page took 0.02889 seconds and 4 git commands to generate.