]> git.pld-linux.org Git - packages/ctunnel.git/blame - ctunnel.spec
- 0.6
[packages/ctunnel.git] / ctunnel.spec
CommitLineData
9bb38b7d 1Summary: Crypto Tunnel for Proxying and Forwarding TCP/UDP Connections
2Name: ctunnel
c539e047 3Version: 0.6
9bb38b7d 4Release: 1
5License: GPL
6Group: Networking/Utilities
7Source0: http://www.nardcore.org/ctunnel/%{name}-%{version}.tar.gz
c539e047 8# Source0-md5: 23ba8758fb92dd71915b869ea82aa475
9bb38b7d 9URL: http://nardcore.org/ctunnel/
10BuildRequires: rpmbuild(macros) >= 1.268
11BuildRequires: openssl-devel
12BuildRequires: zlib-devel
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16ctunnel is a software for proxying and forwarding TCP connections via
17a cryptographic tunnel.
18
19ctunnel can be used to secure any existing TCP based protocol, such as
20HTTP, VNC, Telnet, FTP, RSH, MySQL, etc, as well as UDP. You can even
21tunnel SSH! (if you are really paranoid!).
22
23You can also chain/bounce connections to any number of intermediary
24hosts.ctunnel is a software for proxying and forwarding TCP
25connections via a cryptographic tunnel.
26
27%prep
28%setup -q
29sed -i 's/=.*-O2/=%{rpmcflags}/' src/Makefile
30
31%build
32%{__make} \
33 CC="%{__cc}"
34
35%install
36rm -rf $RPM_BUILD_ROOT
37
38install -D src/ctunnel $RPM_BUILD_ROOT%{_bindir}/ctunnel
39install -D ctunnel.1 $RPM_BUILD_ROOT%{_mandir}/man1/ctunnel.1
40
41%clean
42rm -rf $RPM_BUILD_ROOT
43
44%files
45%defattr(644,root,root,755)
46%doc AUTHORS ChangeLog README
47%attr(755,root,root) %{_bindir}/ctunnel
48%{_mandir}/man1/*
This page took 0.106992 seconds and 4 git commands to generate.