48 lines
1.4 KiB
RPMSpec
48 lines
1.4 KiB
RPMSpec
|
Name: proxytunnel
|
||
|
Version: 1.9.0
|
||
|
Release: 2mamba
|
||
|
Summary: A tool to connect outside through HTTP(S) proxies
|
||
|
Group: Applications/Networking
|
||
|
Vendor: openmamba
|
||
|
Distribution: openmamba
|
||
|
Packager: Stefano Cotta Ramusino <stefano.cotta@openmamba.org>
|
||
|
URL: http://proxytunnel.sourceforge.net
|
||
|
Source: http://downloads.sourceforge.net/project/proxytunnel/proxytunnel%20source%20tarballs/proxytunnel%20%{version}/proxytunnel-%{version}.tgz
|
||
|
License: GPL
|
||
|
## AUTOBUILDREQ-BEGIN
|
||
|
BuildRequires: glibc-devel
|
||
|
BuildRequires: libopenssl-devel
|
||
|
## AUTOBUILDREQ-END
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||
|
|
||
|
%description
|
||
|
ProxyTunnel is a program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy.
|
||
|
Mostly used to tunnel SSH sessions through HTTP(S) proxies, allowing to do many things that wouldn't be possible without ProxyTunnel.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
%make
|
||
|
|
||
|
%install
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
%makeinstall \
|
||
|
PREFIX=%{_prefix}
|
||
|
|
||
|
%clean
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%{_bindir}/proxytunnel
|
||
|
%{_mandir}/man1/*
|
||
|
%doc CHANGES CREDITS README TODO
|
||
|
|
||
|
%changelog
|
||
|
* Thu Jun 07 2012 Stefano Cotta Ramusino <stefano.cotta@openmamba.org> 1.9.0-2mamba
|
||
|
- fixed group
|
||
|
|
||
|
* Thu Jan 14 2010 Stefano Cotta Ramusino <stefano.cotta@openmamba.org> 1.9.0-1mamba
|
||
|
- package created by autospec
|