File corkscrew.spec of Package corkscrew
#
# spec file for package corkscrew
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: corkscrew
Version: 2.0
Release: 0
Summary: Tunnel SSH through HTTP Proxies
Source: corkscrew-%{version}.tar.bz2
URL: https://github.com/bryanpkc/corkscrew/
Group: Productivity/Security
License: GPL-2.0
BuildRoot: %{_tmppath}/build-%{name}-%{version}
BuildRequires: gcc make glibc-devel autoconf automake libtool
%description
Corkscrew is a tool for tunneling SSH through HTTP proxies.
Corkscrew has been tested against several proxies requiring HTTP
authentication. Several flaws exist as only basic authentication is currently
supported. Digest authentication may be supported in the future. NTLM
authentication will most likely never be supported.
Authors:
--------
Pat Padgett <agroman@agroman.net>
%prep
%setup -q
%build
autoreconf -fi
%configure
%__make %{?jobs:-j%{jobs}}
%install
%makeinstall
%clean
%__rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING README TODO
%{_bindir}/corkscrew
%changelog