]> git.pld-linux.org Git - packages/dns2tcp.git/blob - dns2tcp.spec
- up to 0.5.2
[packages/dns2tcp.git] / dns2tcp.spec
1 Summary:        dns2tcp - relay connections throught DNS traffic
2 Name:           dns2tcp
3 Version:        0.5.2
4 Release:        0.1
5 License:        GPL v2
6 Group:          Networking/Utilities
7 Source0:        http://www.hsc.fr/ressources/outils/dns2tcp/download/%{name}-%{version}.tar.gz
8 # Source0-md5:  51c5dc69f5814c2936ce6832217d292d
9 URL:            http://www.hsc.fr/ressources/outils/dns2tcp/index.html.en
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 Dns2tcp is a network tool designed to relay TCP connections through
14 DNS traffic. Encapsulation is done on the TCP level, thus no specific
15 driver is needed (i.e: TUN/TAP). Dns2tcp client doesn't need to be run
16 with specific privileges.
17
18 Dns2tcp is composed of two parts : a server-side tool and a
19 client-side tool. The server has a list of resources specified in a
20 configuration file. Each resource is a local or remote service
21 listening for TCP connections. The client listen on a predefined TCP
22 port and relays each incoming connection through DNS to the final
23 service.
24
25 %prep
26 %setup -q
27
28 %build
29 %configure
30 %{__make} -j1
31
32 %install
33 rm -rf $RPM_BUILD_ROOT
34
35 %{__make} install \
36         DESTDIR=$RPM_BUILD_ROOT
37
38 %clean
39 rm -rf $RPM_BUILD_ROOT
40
41 %files
42 %defattr(644,root,root,755)
43 %doc AUTHORS ChangeLog NEWS README
44 %attr(755,root,root) %{_bindir}/*
45 %{_mandir}/man1/dns2tcpc.1*
46 %{_mandir}/man1/dns2tcpd.1*
This page took 0.069618 seconds and 3 git commands to generate.