Jan Engelhardt
45d04bb411
OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/putty?expand=0&rev=4
42 lines
811 B
RPMSpec
42 lines
811 B
RPMSpec
Name: putty
|
|
Version: 0.62
|
|
Release: 0
|
|
Group: System/X11/Utilities
|
|
Summary: GTK-based terminal emulator program
|
|
License: MIT
|
|
URL: http://www.chiark.greenend.org.uk/~sgtatham/putty/
|
|
|
|
Source: %name-%version.tar.bz2
|
|
Patch1: putty-01-werror.diff
|
|
Patch2: putty-02-remove-gtk1.diff
|
|
BuildRoot: %_tmppath/%name-%version-build
|
|
BuildRequires: autoconf, automake, krb5-devel, gtk2-devel
|
|
|
|
%description
|
|
PuTTY is a terminal emulator application which can act as a client
|
|
for the SSH, Telnet, rlogin, and raw TCP computing protocols and as a
|
|
serial console client.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch -P 1 -P 2 -p1
|
|
|
|
%build
|
|
pushd unix/;
|
|
autoreconf -fi;
|
|
%configure
|
|
make %{?_smp_mflags};
|
|
popd;
|
|
|
|
%install
|
|
pushd unix/;
|
|
make install DESTDIR="%buildroot";
|
|
popd;
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%_bindir/*
|
|
%doc %_mandir/man*/*
|
|
|
|
%changelog
|