]> git.pld-linux.org Git - packages/perl-WeakRef.git/blob - perl-WeakRef.spec
- release 8 (by relup.sh)
[packages/perl-WeakRef.git] / perl-WeakRef.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    WeakRef
7 Summary:        WeakRef - an API to the Perl weak references
8 Summary(pl.UTF-8):      WeakRef - API do perlowych słabych referencji
9 Name:           perl-WeakRef
10 Version:        0.01
11 Release:        8
12 # same as perl
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-authors/id/L/LU/LUKKA/%{pdir}-%{version}.tar.gz
16 # Source0-md5:  3162df7a6eda0dfb44676dd9ebfa3c4c
17 URL:            http://search.cpan.org/dist/WeakRef/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 WeakRef - an API to the Perl weak references.
24
25 %description -l pl.UTF-8
26 WeakRef - API do perlowych słabych referencji.
27
28 %prep
29 %setup -q -n %{pdir}-%{version}
30
31 %build
32 %{__perl} Makefile.PL \
33         INSTALLDIRS=vendor
34 %{__make} \
35         CC="%{__cc}" \
36         OPTIMIZE="%{rpmcflags}"
37
38 %{?with_tests:%{__make} test}
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42
43 %{__make} install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 %clean
47 rm -rf $RPM_BUILD_ROOT
48
49 %files
50 %defattr(644,root,root,755)
51 %doc Changes README
52 %{perl_vendorarch}/*.pm
53 %dir %{perl_vendorarch}/auto/WeakRef/
54 %attr(755,root,root) %{perl_vendorarch}/auto/WeakRef/*.so
55 %{_mandir}/man3/*
This page took 0.115836 seconds and 3 git commands to generate.