]> git.pld-linux.org Git - packages/perl-Net-Pcap.git/blob - perl-Net-Pcap.spec
- x32 rebuild
[packages/perl-Net-Pcap.git] / perl-Net-Pcap.spec
1 #
2 # Conditional build:
3 %bcond_with     tests   # perform "make test" (require root privilleges)
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define         pdir    Net
7 %define         pnam    Pcap
8 Summary:        Net::Pcap - Perl binding to the LBL pcap(3) packet capture library
9 Summary(pl.UTF-8):      Net::Pcap - dowiązanie Perla do biblioteki przechwytywania pakietów LBL pcap(3)
10 Name:           perl-Net-Pcap
11 Version:        0.17
12 Release:        4
13 # same as perl
14 License:        GPL v1+ or Artistic
15 Group:          Development/Languages/Perl
16 Source0:        http://www.cpan.org/modules/by-module/Net/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  fbe911ba5f57d5ba43494434ffb828a0
18 URL:            http://search.cpan.org/dist/Net-Pcap/
19 BuildRequires:  libpcap-devel
20 BuildRequires:  perl-devel >= 1:5.8.0
21 BuildRequires:  rpm-perlprov >= 4.1-13
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 The Net::Pcap module is a Perl binding to the LBL pcap(3) packet
26 capture library.
27
28 %description -l pl.UTF-8
29 Moduł Net::Pcap jest dowiązaniem Perla do biblioteki przechwytywania
30 pakietów LBL pcap(3).
31
32 %prep
33 %setup -q -n %{pdir}-%{pnam}-%{version}
34
35 %build
36 %{__perl} Makefile.PL \
37         CCFLAGS="%{rpmcflags} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" \
38         INSTALLDIRS=vendor
39
40 %{__make}
41
42 %{?with_tests:%{__make} test}
43
44 %install
45 rm -rf $RPM_BUILD_ROOT
46
47 %{__make} install \
48         DESTDIR=$RPM_BUILD_ROOT
49 find $RPM_BUILD_ROOT -name .packlist | xargs -r rm -f
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %doc Changes README
57 %attr(755,root,root) %{_bindir}/pcapinfo
58 %{perl_vendorarch}/Net/Pcap.pm
59 %dir %{perl_vendorarch}/auto/Net/Pcap
60 %attr(755,root,root) %{perl_vendorarch}/auto/Net/Pcap/Pcap.so
61 %{_mandir}/man1/pcapinfo.1p*
62 %{_mandir}/man3/Net::Pcap.3pm*
This page took 0.031608 seconds and 4 git commands to generate.