]> git.pld-linux.org Git - packages/ssldump.git/blob - ssldump.spec
Up to 1.4.
[packages/ssldump.git] / ssldump.spec
1 Summary:        SSLv3/TLS network protocol analyzer
2 Summary(pl.UTF-8):      Analizator protokołu sieciowego SSLv3/TLS
3 Name:           ssldump
4 Version:        1.4
5 Release:        1
6 License:        BSD
7 Group:          Networking/Utilities
8 Source0:        https://github.com/adulau/ssldump/archive/v%{version}/%{name}-%{version}.tar.gz
9 # Source0-md5:  20323bf4b4758f2be4412fa79e6013ab
10 URL:            https://github.com/adulau/ssldump/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  json-c-devel
14 BuildRequires:  libnet-devel
15 BuildRequires:  libpcap-devel >= 2:0.8.3
16 BuildRequires:  openssl-devel >= 0.9.7d
17 BuildRequires:  sed >= 4.0
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 ssldump is an SSLv3/TLS network protocol analyzer. It identifies TCP
22 connections on the chosen network interface and attempts to interpret
23 them as SSLv3/TLS traffic. When it identifies SSLv3/TLS traffic, it
24 decodes the records and displays them in a textual form to stdout. If
25 provided with the appropriate keying material, it will also decrypt
26 the connections and display the application data traffic.
27
28 %description -l pl.UTF-8
29 ssldump to analizator protokołu sieciowego SSLv3/TLS. Identyfikuje
30 połączenia TCP na wybranym interfejsie sieciowym i próbuje
31 interpretować je jako ruch SSLv3/TLS. Po zidentyfikowaniu ruchu
32 SSLv3/TLS dekoduje rekordy i wyświetla je w postaci tekstowej na
33 standardowym wyjściu. W przypadku wyposarzenia we właściwe klucze
34 będzie także dekodował połączenia i wyświetlał ruch danych aplikacji.
35
36 %prep
37 %setup -q
38
39 %build
40 cp -f %{_datadir}/automake/config.* .
41 %{__aclocal}
42 %{__autoconf}
43 %{__autoheader}
44 %{__automake}
45 %configure
46 %{__make}
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 CREDITS README
60 %attr(755,root,root) %{_sbindir}/ssldump
61 %{_mandir}/man1/*
This page took 0.065583 seconds and 3 git commands to generate.