]> git.pld-linux.org Git - packages/perl-Text-Template.git/blob - perl-Text-Template.spec
- release 2
[packages/perl-Text-Template.git] / perl-Text-Template.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define         pdir    Text
7 %define         pnam    Template
8 Summary:        Text::Template - expand template text with embedded Perl
9 Summary(pl.UTF-8):      Text::Template - przetwarzanie szablonów tekstowych przez wbudowany Perl
10 Name:           perl-Text-Template
11 Version:        1.44
12 Release:        2
13 # same as perl
14 License:        GPL v1+ or Artistic
15 Group:          Development/Languages/Perl
16 Source0:        http://www.cpan.org/modules/by-module/Text/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  81a43d284d9c3cdb2b28e104c1c18609
18 URL:            http://search.cpan.org/dist/Text-Template/
19 BuildRequires:  perl-devel >= 1:5.8.0
20 BuildRequires:  rpm-perlprov >= 4.1-13
21 BuildArch:      noarch
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 This is a library for generating form letters, building HTML pages,
26 or filling in templates generally.  A `template' is a piece of text
27 that has little Perl programs embedded in it here and there.  When you
28 `fill in' a template, you evaluate the little programs and replace
29 them with their values.
30
31 %description -l pl.UTF-8
32 To jest biblioteka do generowania listów z formularzy, budowania stron
33 HTML lub ogólnie wypełniania szablonów. Szablon (template) to kawałek
34 tekstu, który ma wbudowane gdzieniegdzie małe programy w Perlu. Przy
35 "wypełnianiu" szablonu te małe programy są wykonywane i zastępowane
36 zwracanymi przez nie wartościami.
37
38 %prep
39 %setup -q -n %{pdir}-%{pnam}-%{version}
40
41 %build
42 %{__perl} Makefile.PL \
43         INSTALLDIRS=vendor
44 %{__make}
45
46 %{?with_tests:%{__make} test}
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50
51 %{__make} install \
52         DESTDIR=$RPM_BUILD_ROOT
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %files
58 %defattr(644,root,root,755)
59 %doc README
60 %{perl_vendorlib}/Text/Template.pm
61 %{perl_vendorlib}/Text/Template
62 %{_mandir}/man3/*
This page took 0.060189 seconds and 3 git commands to generate.