]> git.pld-linux.org Git - packages/perl-Text-Template.git/blame_incremental - perl-Text-Template.spec
- (automatic) provided informative description
[packages/perl-Text-Template.git] / perl-Text-Template.spec
... / ...
CommitLineData
1%include /usr/lib/rpm/macros.perl
2%define pdir Text
3%define pnam Template
4Summary: Text::Template - Expand template text with embedded Perl
5Name: perl-Text-Template
6Version: 1.43
7Release: 1
8License: GPL
9Group: Development/Languages/Perl
10Source0: ftp://ftp.cpan.org/pub/CPAN/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
11BuildRequires: rpm-perlprov >= 3.0.3-16
12BuildArch: noarch
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16This is a library for generating form letters, building HTML pages,
17or filling in templates generally. A `template' is a piece of text
18that has little Perl programs embedded in it here and there. When you
19`fill in' a template, you evaluate the little programs and replace them
20with their values.
21
22%prep
23%setup -q -n %{pdir}-%{pnam}-%{version}
24
25%build
26perl Makefile.PL
27%{__make}
28
29%install
30rm -rf $RPM_BUILD_ROOT
31
32%{__make} install DESTDIR=$RPM_BUILD_ROOT
33
34%clean
35rm -rf $RPM_BUILD_ROOT
36
37%files
38%defattr(644,root,root,755)
39%doc README
40%{perl_sitelib}/Text/Template.pm
41%{perl_sitelib}/Text/Template
42%{_mandir}/man3/*
This page took 0.056507 seconds and 4 git commands to generate.