]> git.pld-linux.org Git - packages/perl-File-Tempdir.git/blob - perl-File-Tempdir.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-File-Tempdir.git] / perl-File-Tempdir.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %define pdir    File
6 %define pnam    Tempdir
7 Summary:        File::Tempdir - interface to tempdir()
8 Summary(pl.UTF-8):      File::Tempdir - interfejs do tempdir()
9 Name:           perl-File-Tempdir
10 Version:        0.02
11 Release:        1
12 # same as perl
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://search.cpan.org/CPAN/authors/id/N/NA/NANARDON/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  51f609343908803bbc78774ceb81c431
17 URL:            http://search.cpan.org/dist/File-Tempdir/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 %if %{with tests}
21 %endif
22 BuildArch:      noarch
23 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25 %description
26 This module provide an object interface to tempdir() from File::Temp.
27 This allow to destroy the temporary directory as soon you don't need
28 it anymore using the magic DESTROY() function automatically call be
29 perl when the object is no longer reference.
30
31 If a value is passed to at object creation, it become only a container
32 allowing to keep same code in your function.
33
34 %description -l pl.UTF-8
35 ModuĊ‚ ten dostarcza interfejs do tempdir() dla File::Temp.
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
48 rm -rf $RPM_BUILD_ROOT
49
50 %{__make} pure_install \
51         DESTDIR=$RPM_BUILD_ROOT
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %{perl_vendorlib}/File/*.pm
59 %{_mandir}/man3/*
This page took 0.153907 seconds and 4 git commands to generate.